search for: postfreqcount

Displaying 1 result from an estimated 1 matches for "postfreqcount".

Did you mean: post_refcount
2013 May 25
3
When creating a data frame with data.frame() transforms "integers" into "factors"
...a types i did : 'sappily(df, class) ' that returns "userID" --> "integer" ; "user" ---> "factor" ; "posts" ---> "integer" then i try to create another data frame with the number of posts and its frequencies, so i did: 'postFreqCount<-data.frame(table(df['posts']))' this gives me the postFreqCount data frame with two columns, one called 'Var1' that has the number of posts each user did, and another collumn 'Freq' with the frequency of each number of posts. the problem is that if i do : 'sappil...