Hello I have a dataframe record in R of dimension 8 obs 60 variables , with the missing values replaced by NA and the other values being words.
When I try to tabulate the dataframe like this feeds<-table(record)
I get an error saying :
Error in table(record) : attempt to make a table with >= 2^31 elements
Some sample elements/structure of my dataframe are
INC - CORP Application Issue INC - CORP Issue INC - PC Software Issue
Affected User Affected User Affected User
Attachment Attachment Attachment
Description / Priority Business Critica.. Configuration Item
Knowledge Search Client ID Contact Info
NA Description / Pr.. NA
I don't understand the error as the elements in the dataframe are clearly not even close to 2^31.
Thanks for your time.