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
zooming for example below also causes plotting outside of background area
library(reshape)
nasaTsCa <- nasa11[,c(6,9,14)]
nasaTsCa[,2:3] <- rescaler(nasaTsCa[,2:3])
nasaTsCa <- melt(nasaTsCa,1)
qnasaTsCa <- qdata(nasaTsCa)
qtime(TimeIndx,~value,qnasaTsCa,group=variable,shift=c(1,12))
library(cranvas)
data(wages)
fit = lm(lnw~exper+id,data=wages)
wage2=subset(wages,!duplicated(wages$id), c(id, hispanic))
predict wages at year 0 and 6 respectively
wage2$lnw0 = predict(fit, data.frame(id=unique(wages$id), exper=0))
wage2$lnw6 = predict(fit, data.frame(id=unique(wages$id), exper=6))
qwage2=qdata(wage2,color=hispanic)
press arrow up repeatedly to get bars to 'grow' past background area
qhist(lnw0, main = 'Wages on the first day')
The text was updated successfully, but these errors were encountered: