Last active
December 22, 2020 09:30
-
-
Save darioappsilon/87ffde530c63f4e675c4d76b359f8009 to your computer and use it in GitHub Desktop.
003_linear_regression
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(reshape) | |
| # Load in th dataset | |
| df <- read.csv("Fish.csv") | |
| # Remove target variable | |
| temp_df <- subset(df, select = -c(Weight)) | |
| melt_df <- melt(temp_df) | |
| # Draw boxplot | |
| boxplot(data = melt_df, value ~ variable) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment