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 huge dataset I want to visualize in tabplot. The dataset currently resides in a redshift server, and I can pre-aggregate a lot of the bins before I pass them to tableplot.
It would be nice if tabplot supported a weight argument.
e.g.:
library('tabplot')
library('data.table')
library('ggplot2')
data(diamonds)
dat<- data.table(diamonds)
dat<-dat[,list(n=.N), by=c('carat', 'cut', 'color', 'clarity')]
#Identical to tableplot(diamonds, select_string=c('carat', 'cut', 'color', 'clarity'))#But 1/4 of the data size
tableplot(dat, weight='n')
nrow(dat)/nrow(diamonds)
The text was updated successfully, but these errors were encountered:
I have a huge dataset I want to visualize in tabplot. The dataset currently resides in a redshift server, and I can pre-aggregate a lot of the bins before I pass them to tableplot.
It would be nice if tabplot supported a weight argument.
e.g.:
The text was updated successfully, but these errors were encountered: