Machine Learning

Linear Regression Datasets: CSV, Excel

Linear regression is a fundamental machine learning algorithm that helps in understanding the relationship between independent and dependent variables. It is widely used in various fields for predicting numerical outcomes based on one or more input features. To practice and learn about linear regression, it is essential to have access to good quality datasets. In this blog, we have compiled a list of 17 datasets suitable for training linear regression models, available in CSV or easily convertible to CSV (Excel) format. I have also provided a sample Python code you can use to train using these datasets.

List of Dataset for Training Linear Regression Models

The following is a list of 15 dataset which you can use to train linear regression models for learning purpose:

Python Code for Training Linear Regression Models using CSV Dataset

The following is a sample Python code snippet demonstrating how to train a linear regression model using the Boston Housing Dataset. The following Python code snippet imports the necessary libraries, loads the Boston Housing Dataset, splits the data into training and testing sets, trains a linear regression model, makes predictions on the test set, and calculates the performance metrics (Mean Squared Error, Root Mean Squared Error, and R-squared) to evaluate the model’s performance.

The above code can be used as it is to read CSV files from URL and train the linear regression models. However, if the file is downloaded to your local drive, you may try with the following Python code:

import pandas as pd
import numpy as np
from sklearn.model_selection import train_test_split
from sklearn.linear_model import LinearRegression
from sklearn.metrics import mean_squared_error, r2_score
# Load the Boston Housing Dataset
url = "https://raw.githubusercontent.com/selva86/datasets/master/BostonHousing.csv"
df = pd.read_csv(url)
# Separate the features (X) and target (y)
X = df.drop('medv', axis=1)
y = df['medv']
# Split the dataset into training and testing sets
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
# Train the linear regression model
lr = LinearRegression()
lr.fit(X_train, y_train)
# Make predictions on the test set
y_pred = lr.predict(X_test)
# Calculate the performance metrics
mse = mean_squared_error(y_test, y_pred)
rmse = np.sqrt(mse)
r2 = r2_score(y_test, y_pred)
# Print the performance metrics
print(f"Mean Squared Error: {mse:.2f}")
print(f"Root Mean Squared Error: {rmse:.2f}")
print(f"R-squared: {r2:.2f}")
# Load the dataset from local drive
file_path = "path/to/your/csv_file.csv"
df = pd.read_csv(file_path)
# Replace 'feature_columns' and 'target_column' with appropriate column names
feature_columns = ['feature1', 'feature2', 'feature3']
target_column = 'target'
# Separate the features (X) and target (y)
X = df[feature_columns]
y = df[target_column]

Conclusion

In this blog post, we compiled a diverse list of 17 datasets (CSV, Excel) suitable for training and practicing linear regression models. These datasets cover a broad range of topics, from predicting house prices to forecasting energy consumption. Using these datasets, you can not only gain hands-on experience with linear regression but also explore various aspects of the machine learning process, such as data preprocessing, feature selection, model evaluation, and improvement.

By working with these datasets, you’ll deepen your understanding of the assumptions and limitations of linear regression models and learn how to apply this fundamental algorithm effectively. Additionally, you’ll develop the skills necessary to tackle real-world problems using linear regression, paving the way for you to explore more complex machine learning techniques.

Ajitesh Kumar

I have been recently working in the area of Data analytics including Data Science and Machine Learning / Deep Learning. I am also passionate about different technologies including programming languages such as Java/JEE, Javascript, Python, R, Julia, etc, and technologies such as Blockchain, mobile computing, cloud-native technologies, application security, cloud computing platforms, big data, etc. I would love to connect with you on Linkedin. Check out my latest book titled as First Principles Thinking: Building winning products using first principles thinking.

Recent Posts

Retrieval Augmented Generation (RAG) & LLM: Examples

Last updated: 25th Jan, 2025 Have you ever wondered how to seamlessly integrate the vast…

1 week ago

How to Setup MEAN App with LangChain.js

Hey there! As I venture into building agentic MEAN apps with LangChain.js, I wanted to…

2 weeks ago

Build AI Chatbots for SAAS Using LLMs, RAG, Multi-Agent Frameworks

Software-as-a-Service (SaaS) providers have long relied on traditional chatbot solutions like AWS Lex and Google…

2 weeks ago

Creating a RAG Application Using LangGraph: Example Code

Retrieval-Augmented Generation (RAG) is an innovative generative AI method that combines retrieval-based search with large…

3 weeks ago

Building a RAG Application with LangChain: Example Code

The combination of Retrieval-Augmented Generation (RAG) and powerful language models enables the development of sophisticated…

3 weeks ago

Building an OpenAI Chatbot with LangChain

Have you ever wondered how to use OpenAI APIs to create custom chatbots? With advancements…

3 weeks ago