Univariate linear regression example in Python
Python is a very popular programming language. Its powerful scientific computing and data processing capabilities make it widely used in the fields of data analysis and machine learning. This article will introduce how to use univariate linear regression in Python for data modeling and prediction, and demonstrate its practical application through an example.
First of all, what is linear regression? In statistics and machine learning, linear regression is a method used to establish a relationship between two variables. In univariate linear regression, we have only one explanatory variable (independent variable) and one response variable (dependent variable).
Next, we will introduce how to use the scikit-learn library in Python to implement univariate linear regression. scikit-learn is a popular machine learning library that contains many tools for data modeling and visualization.
Step 1: Import libraries and data
First, we need to import some libraries. In this article, we will use NumPy, Pandas, Matplotlib and Scikit-learn.
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from sklearn.linear_model import LinearRegression
Next, we need to prepare what we want to analyze data. In this example, we will use a set of data about house size and price, which is a very simple data set.
Data
df = pd.DataFrame({'Area': [1400, 1600, 1700, 1875, 1100, 1550, 2350, 2450, 1425, 1700],
'价格': [245000, 312000, 279000, 308000, 199000, 219000, 405000, 324000, 319000, 255000]})
print(df)
The output is as follows:
面积 价格
0 1400 245000
1 1600 312000
2 1700 279000
3 1875 308000
4 1100 199000
5 1550 219000
6 2350 405000
7 2450 324000
8 1425 319000
9 1700 255000
#Step 2: Data Analysis and Visualization
Once we import data, we can start doing some data analysis and visualization. Let's draw a scatter plot, where the abscissa is the house area and the ordinate is the sales price.
plt.scatter(df['area'], df['price'])
plt.xlabel('area')
plt.ylabel('price')
plt.show()
Output:
This scatter plot tells us that as the area of the house increases, the selling price also increases. Therefore, there may be a linear relationship between these two variables.
Step 3: Fit a linear regression model
Now, we can start fitting the linear regression model. In scikit-learn, you need to use the LinearRegression() function to build a linear model.
X = df[['area']]
Y = df['price']
model = LinearRegression().fit(X, Y)
Here, we assign the area to the independent variable X, the price to the dependent variable Y, and Passed into the LinearRegression() function. After fitting the model, we can check the slope and intercept.
print('Slope:', model.coef_)
print('Intercept:', model .intercept_)
Output:
Slope: [126.88610769]
Intercept: 36646.35077294225
Step 4: Visualization results
Complete the training of the model, we You can use Matplotlib to draw a regression line and predict house prices. The following code will show how to predict the selling price of a new house area.
Prediction
y_pred = model.predict([[2000]])
print('Predicted selling price:', y_pred)
Draw the regression line
plt.scatter(df['area'], df['price'])
plt.plot(df['area'], model.predict(df[['area']]), color ='r')
plt.xlabel('area')
plt.ylabel('price')
plt.show()
Output:
Yes Seeing that our regression line fits our data points, we can use the fitted model to predict the sales price of new homes by square footage.
This article introduces how to use the scikit-learn library in Python to implement univariate linear regression, including data preparation, data analysis and visualization, fitting linear regression models and predicting results. Linear regression is a simple yet powerful tool that can be used to study the relationship between two variables and make predictions. It has wide applications in data analysis and machine learning.
The above is the detailed content of Univariate linear regression example in Python. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

To run Python code in Sublime Text, you need to install the Python plug-in first, then create a .py file and write the code, and finally press Ctrl B to run the code, and the output will be displayed in the console.

Golang is better than Python in terms of performance and scalability. 1) Golang's compilation-type characteristics and efficient concurrency model make it perform well in high concurrency scenarios. 2) Python, as an interpreted language, executes slowly, but can optimize performance through tools such as Cython.

Writing code in Visual Studio Code (VSCode) is simple and easy to use. Just install VSCode, create a project, select a language, create a file, write code, save and run it. The advantages of VSCode include cross-platform, free and open source, powerful features, rich extensions, and lightweight and fast.

Running Python code in Notepad requires the Python executable and NppExec plug-in to be installed. After installing Python and adding PATH to it, configure the command "python" and the parameter "{CURRENT_DIRECTORY}{FILE_NAME}" in the NppExec plug-in to run Python code in Notepad through the shortcut key "F6".
