Sign in with Microsoft
Sign in or create an account.
Hello,
Select a different account.
You have multiple accounts
Choose the account you want to sign in with.

Data frames can be used in many RevoScaleR functions. Smaller data sets or excerpts from big data stored in an .xdf file can be read into an R data frame, and all of R's functionality is available for data frames 

This example reads the first 10 rows from the CensusWorkers .xdf file into a data frame: 

censusWorkers<-file.path(rxGetOption("sampleDataDir"),"CensusWorkers") 
myCensusDF <- rxReadXdf(censusWorkers,numRows = 10)



and this example compares rxLinMod and lm results using the iris data: 

irisLinMod <- rxLinMod(Sepal.Length ~ Sepal.Width, data = iris) 
summary(irisLinMod) 
irisLM <- lm(Sepal.Length ~ Sepal.Width, data = iris, contrasts=list(Species = contr.SAS)) 
summary(irisLM)   

Need more help?

Want more options?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Was this information helpful?

What affected your experience?
By pressing submit, your feedback will be used to improve Microsoft products and services. Your IT admin will be able to collect this data. Privacy Statement.

Thank you for your feedback!

×