ML Lab Intro 2019

You might also like

Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 7

ECM 2002 – Lab Practice

Fall 2019-20
library(ISLR)
names(Auto)
library(MASS)
names(Boston)
library(MASS)
names(USArrests)
library(ISLR)
dim(Auto)
summary(Auto)
Try these commands one by one
library (ISLR)
dim(Auto)
summary(Auto)
attach(Auto)
plot(cylinders,mpg)
hist(mpg)
pairs(Auto)

You might also like