C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Tuhin Paul(8)
Pramod Singh(2)
Vijay Kumari(2)
Edinbiro James(2)
Ojash Shrestha(2)
Rohit Gupta(2)
Dhairya Krishnat(2)
Deepak Dwij(2)
Ashwani Tyagi(2)
Nidhi Sharma(1)
Baibhav Kumar(1)
Saurav Kumar(1)
Abiola David(1)
Sameer Shukla(1)
Abhishek Singhal(1)
Mohammad Elsheimy(1)
Sarthak Gupta(1)
Anouar Ben Zahra(1)
Shekh Ahmad(1)
Ankur Soni(1)
Logesh Palani(1)
Anil S(1)
Ayyaz Ahmad(1)
Suraj Vishwakarma(1)
Anupam Maiti(1)
Azim Zahir(1)
Sazid Mauhammad(1)
Abhishek Dubey(1)
Abhimanyu K Vatsa(1)
Mahesh Chand(1)
Purushottam Rathore(1)
Aashina Arora(1)
Vinoth Rajendran(1)
Neeraj Kumar(1)
Gyanender Sharma(1)
Sudhir Choudhary(1)
Nitin Bhardwaj(1)
Mamta M(1)
Gaurav Gupta(1)
Nipun Tomar(1)
Razi Rais(1)
Resources
No resource found
How to Build a Linear Regression Model in Python Using Scikit-Learn
Apr 03, 2026.
Build a linear regression model in Python using Scikit-Learn. Learn step-by-step implementation, real-world examples, and best practices for accurate predictions.
Machine Learning Project in Python: Salary Prediction Using Linear Regression
Feb 15, 2026.
Build your first ML project! Predict salary with Python and Linear Regression. A beginner-friendly tutorial covering data loading, training, and prediction.
Understanding Searching Algorithms: Linear Search and Binary Search
Oct 14, 2025.
Explore the fundamentals of searching algorithms with Linear and Binary Search. Learn how these algorithms efficiently locate elements within data structures. Discover their step-by-step logic, Python implementations, and time/space complexity. Understand when to use each algorithm based on data characteristics and performance needs. Master these essential techniques for efficient data retrieval in programming and real-world applications. Binary search is faster but requires sorted data.
How to Solve Sliding Window Maximum in Linear Time
Oct 01, 2025.
This article dives into solving this common problem in linear time, moving beyond the inefficient naive approach. Learn how to leverage the deque (double-ended queue) data structure for optimal O(n) performance. Discover real-world applications in stock analysis, signal processing, and system monitoring, and master a technique crucial for efficient data handling and high-performance solutions.
What is the difference between linear and non-linear data structures?
Sep 03, 2025.
Unlock the power of Data Structures and Algorithms (DSA) by understanding the core difference between linear and non-linear data structures. This guide breaks down the sequential nature of arrays, linked lists, stacks, and queues versus the hierarchical complexity of trees, graphs, heaps, and tries. Learn when to use each type for optimal problem-solving and real-world applications, from simple to-do lists to intricate social networks. Master this distinction and boost your DSA confidence!
Implementing Simple Linear Regression Model in Fabric Notebook
Jan 12, 2024.
This article dives into how to implement a simple linear regression model in Microsoft Fabric Notebook. The main goal of simple linear regression is to find the best-fitting line through the data points that minimizes the sum of the squared differences between the observed values.
An Introduction To Linear Regression
Feb 20, 2023.
The article provides an introduction to the fundamentals of linear regression, including an explanation of the equation used to fit a line to the data, as well as examples of how moving the line can be visualized using simple graphs to aid in comprehension
Understanding The Importance Of Linear Regression In Data Analysis
Feb 09, 2023.
In this article, we'll learn about the Importance of Linear Regression in Data Analysis.
Unlocking The Power Of Linear Regression - A Step-by-step Guide To OLS Method
Feb 09, 2023.
In this article, we'll learn about the Power of Linear Regression: A Step-by-Step Guide to OLS Method"
How To Use weightSum And layout_weight In Linear Layout
Jul 16, 2022.
In this article, you will learn about how to use weightSum and layout_weigth in a linear layout.
Azure Machine Learning - Linear Regression Model
Mar 25, 2022.
In this article, we'll learn about Linear Regression Modeling from data preparation to evaluation in Azure Machine Learning.
My C# Implementation Of Basic Linear Algebra Concepts
Mar 06, 2020.
Today, I will be sharing with you my C# implementation of the basic linear algebra concepts.
It's Linear Regression ⏩
Jan 22, 2020.
This article consists of overview of Linear Regression which is considered as a workhouse of Supervised ML along with it's implementation with some common python libraries .
Learn About Linear Regression
Dec 16, 2019.
In this article, you will learn about Linear Regression and its relationship to AI.
Multiple Linear Regression using Python
Nov 07, 2019.
Multiple linear regression (MLR), also known simply as multiple regression, is a statistical technique that uses several explanatory variables to predict the outcome of a response variable. In this article, you will learn how to implement multiple linear regression using Python.
Understanding Linear Regression using Python
Oct 28, 2019.
In statistics, linear regression is a linear approach to modeling the relationship between a scalar response and one or more explanatory variables. The case of one explanatory variable is called a simple linear regression. For more than one explanatory variable, the process is called multiple linear regression. In this article, you will learn how to implement linear regression using Python.
How To Build A Linear Regression Web Service In Azure ML Model
Aug 22, 2017.
In this article, we are going to build a linear regression model. After building the model, we will train it and publish it as a web service so that we can use the service in any application.
Data Structures In Java - Linear Array
Aug 10, 2017.
Data structure means organizing the data by using models in the computer memory. A linear data structure that represents a relationship between elements by successive memory location is known as the array, where as a linear data structure that represents a relationship between elements by pointer and link is known as linked list.
Xamarin.Android - Horizontal And Vertical View In Linear Layout Using Visual Studio 2017
May 05, 2017.
Xamarin.Android - Horizontal And Vertical View In Linear Layout Using Visual Studio 2017.
Generate Linear And 2-D Barcodes In A WPF Application
Apr 17, 2016.
In this article we will learn how to create barcodes in a WPF application using DynamicBarcode Creator for .NET.
Machine Learning: Linear Regression With One Variable
Jan 17, 2016.
Supervised learning involves providing the correct answer for each example of data. This article focuses on the use of regression and classification techniques in supervised learning, particularly linear regression. It explains the concept of linear regression, terms commonly used, the hypothesis function, cost function, and the gradient descent algorithm for minimizing the cost function.
Linear Search Using JavaScript
Aug 07, 2024.
Learn how to implement a linear search algorithm using JavaScript. This tutorial covers the fundamentals of linear search, a simple method for finding an element in an array by checking each element sequentially.
Linear Regression vs Logistic Regression
Jan 29, 2024.
Understanding the difference between Linear Regression and Logistic Regression in Machine Learning. Linear and Logistic Regression: understand relationships between variables and predict outcomes. Learn differences and use cases in regression analysis for both continuous and categorical data.
Linear Regression In R
Sep 06, 2021.
In this article, you will learn about linear regression using R.
Linear Algebra To Know For Machine Learning
May 09, 2021.
Linear Algebra is the backbone of Artificial Intelligence. Here we discuss about various mathematics with Linear Algebra to help us become a better Machine Learning Engineer
Linear Regression In Power BI
Jan 18, 2021.
Utilize Power BI's robust analytics capabilities for linear regression analysis. Leverage regression algorithms to model relationships between variables, enabling data-driven insights and predictive analytics for informed decision-making.
Linear Layout In Android
Feb 14, 2013.
In this article I explain what are the types of layouts in Android and where we can use a Linear Layout in Android.
Linear Search in Java
Mar 25, 2012.
In this article, we are going to discuss or describe Java linear searches. This is the simplest method of searching. In this method, the element to be searched is sequentially searched in the list. This method can be applied to a sorted or an unsorted list.
Linear Gradient With Canvas Using HTML 5
Mar 05, 2012.
In this article we are going to have a very interesting part related to the designing that is Linear Gradient with Canvas Using HTML 5. For this purpose we can use the createLinearGradient() method.
Linear Pointer Changing Various Effect Using HTML5
Feb 18, 2012.
In this article we are going to understand a topic related to the designing; the scenario for this is Linear Pointer changing various effect. In this part you can select from various options and as you press the action button the pointer begins moving along dedicated points.
Working with Linear/Radial Gradients and Gradient Vector Transform in XAML Silverlight
Apr 20, 2011.
In this article, you will learn about Linear/Radial Gradients and Gradient Vector Transform in XAML Silverlight.
LinearGradientBrush in Silverlight
Apr 16, 2009.
This article demonstrates how to use a linear gradient brush in Silverlight using XAML and C#.
WPF LinearGradientBrush using XAML
Feb 25, 2009.
This article and code snippet explains how to fill gradient color in the background of controls in WPF using XAML.
Loan Prediction Using Machine Learning in Python – Step-by-Step NBFC or Banking Model with R² Score
Feb 21, 2026.
Build a loan amount prediction system using Python and Linear Regression. Includes synthetic data generation, model training, and R² score evaluation.
How to Find the Lower Triangular of a Matrix in Python
Oct 07, 2025.
Unlock the power of lower triangular matrices in Python! This guide explores extracting the lower triangular part of a matrix using NumPy for efficiency. Discover a real-world application in fraud detection by isolating historical financial transactions. Learn best practices, performance tips, and see complete, tested code. Master this technique for smarter, faster data analysis and uncover valuable insights hidden below the diagonal. Essential for data science, linear algebra, and network analysis.
How to Determine Whether a Matrix Is Symmetric in Python
Oct 07, 2025.
Learn how to determine if a matrix is symmetric in Python with this comprehensive guide. Explore real-world applications in civil engineering, where symmetry validation prevents costly simulation errors. Discover robust implementations using NumPy, complete with test coverage and practical tips for production code. Ensure data integrity and optimize your algorithms by mastering matrix symmetry checks. This article provides a clear, efficient, and reliable solution for verifying symmetry in various applications.
Matrix Inversion in Real-Time Augmented Reality in Python
Oct 06, 2025.
Unlock the power of matrix inversion in Python for real-time augmented reality! This article explores its crucial role in AR navigation, enabling 3D object selection and virtual world alignment. Learn how to compute inverses using NumPy with error handling, optimize performance, and avoid common pitfalls. Discover best practices for robust and efficient AR applications.
The Hadamard Product in Real-Time Weather Forecasting in Python
Oct 05, 2025.
Learn how to add two 3x3 matrices in Python using native lists, focusing on real-world applications like MRI image correction. This tutorial provides a step-by-step implementation with clean, tested code, emphasizing efficiency and best practices. Discover how this fundamental linear algebra operation ensures diagnostic accuracy in medical imaging and other fields. Includes performance analysis and considerations for using NumPy.
How to Add Two 3×3 Matrices in Python
Oct 05, 2025.
Learn how to add two 3x3 matrices in Python using native lists, focusing on clarity, efficiency, and real-world applications. This guide provides a step-by-step implementation with complete code, test cases, and performance analysis. Discover its relevance in MRI image processing, where matrix addition corrects image distortions, ensuring diagnostic accuracy.
How to Subtract Two 3×3 Matrices in Python
Oct 05, 2025.
Learn how to subtract 3x3 matrices in Python without external libraries, crucial for applications like drone orientation correction. This article provides a step-by-step guide, covering initialization, subtraction logic, and best practices. Includes a complete, tested implementation with unit tests and a real-world drone example. Understand the importance of validated code in safety-critical systems and optimize for performance.
How to Find a Regression Line on X or Y in Python
Oct 03, 2025.
Unlock the power of linear regression by mastering both Y-on-X and X-on-Y approaches! This guide clarifies when to predict X from Y (often overlooked) using a real-world EV charging scenario. Learn to avoid biased predictions and build more accurate models with practical Python code, formulas, and test cases. Essential for data scientists and engineers!
How to Search for an Array Element in Python
Oct 01, 2025.
Master array element searching in Python! This guide explores linear search, binary search, and set-based lookups, optimizing for speed and accuracy. Learn to protect sensitive data in healthcare systems by efficiently detecting and redacting PII. Includes practical examples, time complexity analysis, and a complete PII scanner implementation. Discover the best search method for your specific needs and improve your code's performance.
How To Get Correlation Coefficient In Power BI
Jan 13, 2021.
This content explains Pearson's correlation coefficient, the most widely used correlation coefficient, particularly in linear regression and measuring the relationship between two variables. Interpretation of correlation coefficient values and provides step-by-step instructions.
Layouts in Android
Sep 21, 2020.
This article looks at layouts in Android with Android Studio
Learn (Python) SciPy
Apr 13, 2020.
In this article we will learn about SciPy Python Library, after which you would be able to perform complex mathematical and technical problems using Python SciPy Library.
Relative Panel Controls in Universal App Platform
Aug 29, 2015.
In this article we will learn about Relative Panel Controls in Universal App Platform.
Learn About Android Layouts
Jun 15, 2015.
In this article you will learn about Android Layout parts with example.
HTML5 Canvas For Beginners : Part 3
Aug 13, 2013.
In this article we learn about various gradients in HTML5 Canvas.
Gradient in CSS
Apr 04, 2013.
In this article you will learn about linear and radial gradients in CSS.
AnimateMotion Following a Path
Mar 06, 2013.
In this article I describe the implementation and use of amimateMotion following a Path.
HTML5 Canvas Gradient
Mar 04, 2013.
In this article I describe how to implement Linear and Radial gradients in HTML5
How To Use Simple Array in TypeScript
Nov 17, 2012.
In this article I will explain what an array is and how to use them in TypeScript with an example.
Using Gradients and Border Radius in CSS3: Part II
May 05, 2012.
This article continues from a previous discussion on CSS3 gradients, diving into more complex gradient applications. It offers practical examples, including creating gradients in an HTML file, ensuring browser compatibility, and using gradient color stops.
SVG Gradients in HTML5
Apr 27, 2012.
In this article we will discuss the SVG Gradients in HTML5.
Expression Blend 4: Brushes
Mar 10, 2011.
Brushes plays a very important role in creating an application in WPF. Use of brushes makes it more attractive application.
How Count Sort works
Jan 15, 2005.
Count Sort is Linear Sorting algorithm which sorts elements in O(n) time , the other linear sorts include Bucket and Radix sorts.