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
data.table is used under the hood. How can I union multiple tweet sets loaded from disk? Trying to use data.table::funion did not work for me as this function does not seem to be available.
If I recall correctly, SocialMediaLab doesn't import every function in data.table and functions such as funion are not available in the user's global environment unless the data.table package is loaded manually by the user.
Have you tried using the rbind function on your data tables, i.e., newData <- rbind(myDataFromDisk1,myDataFromDisk2) ?
data.table
is used under the hood. How can I union multiple tweet sets loaded from disk? Trying to usedata.table::funion
did not work for me as this function does not seem to be available.The text was updated successfully, but these errors were encountered: