Errors on imported dataset

cols(
.default = col_character(),
X1 = col_double(),
MonthlyCharges = col_double(),
TotalCharges = col_double()
)
i Use spec() for the full column specifications.

Warning message:
Missing column names filled in: 'X1' [1]

View(MIS470Telcocustomer)
intrain- createDataPartition(YOURDATA$Churn,p=0.7,list=FALSE)
Error: object 'intrain' not found
set.seed(2017)
training- YOURDATA[intrain,]
Error: object 'training' not found
testing- YOURDATA[-intrain,]

I think you meant <-

Thank you very much for your help.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.