title: “Exploratory Data Analysis and Prediction Model Planning” author: “Prince Kumar” output: html_document —
This project performs basic exploratory data analysis using R.
{r} data(mtcars) head(mtcars)
{r} summary(mtcars)
{r} plot(mtcars\(wt, mtcars\)mpg, main=“Weight vs MPG”, xlab=“Weight”, ylab=“MPG”)
This project demonstrates simple EDA and model planning.