You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a Table with the number of tweets and retweets published by hour. I am using CrossTab.xTabCount to count the number de post by hour. My code looks something like this: Table tblTweetsByHour = CrossTab.xTabCount(tweetsByHourTable, colHour, tweetsByHourTable.categoryColumn("isRT"));
Then, I tried to sort (asc) the table (tblTweetsByHour) using the hour (colHour), but no working. Trying to solve the problem, I noticed hour's column is now a Category column.
I think CrossTab.xTabCount does not should change the data type of the columns.