Forum Discussion
Anonymous
10 years agoNot applicable
Fields name with space in R
Simple example: Fields name containing a space, moved into a dataframe with the new R visualization: #Create Dataframe #dataset <-data.frame (Order Quantity, Gross Profit) How can I reference...
Avi_Sander
10 years agoMicrosoft Employee
Try dataset["Order Quantity"]. this should do the trick.
Thanks, Avi