I want to combine 3 table(weekdays())
in R
with library(twitteR)
and library(ROAuth)
no more.
I am doing it with tweets. My job is combine created days(what days) from 3 tweets.
a=table(weekdays(dsADF[,"created"]))
b=table(weekdays(dsBDF[,"created"]))
c=table(weekdays(dsCDF[,"created"]))
Let's say from a I've got Monday :100, Tuesday : 200
From b, Monday =30, tuesday = 40, thursday= 130, friday = 200 from c whatever
How I can combine three tables? without any library functions? I will use it to draw a plot.
Convert them to data frames, combine them with rbind and convert back with xtabs.
giving: