data-science-in-ed/twitter
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
Clone this repository and visualize the data.
Vizualize data code:
#By name
counts=table(Tmerge$screenName)
barplot(counts, las=2)
#By day
hist(Tmerge$created, breaks = "d")
You may need to use as.POSIXt() to convert to date/time format.