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.

RevoScaleR formulas support two formula functions for converting categorical variables: 

N() treats a categorical variable as continuous. 
F() treats a continuous variable as categorical. 
F() contains additional arguments low, high, and exclude, which can be included to specify the value of the lowest category, the highest category, and how to handle values outside the specified range. 

This example, which uses sample Census Data shipped with RevoScaleR, simply uses F() to treat the 'age' variable as a factor in the summary formula: 

sampleDataDir <- rxGetOption("sampleDataDir") 
censusWorkers <- file.path(sampleDataDir, "CensusWorkers.xdf") 
rxSummary(~ F(age) + sex, data = censusWorkers)



For more information on RevoScaleR formula syntax, type ?rxFormula at the Revolution R Enterprise console.   

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!

×