Displaying 1 result from an estimated 1 matches for "dsnradam".
2009 Feb 07
0
Problems with svyhist
...can plot the unweighted
data using MyBreaks with hist as shown in the second code snippet
######################################
SurveyData <- read.table("C:/Data/R/RADAMdata2.csv", header=TRUE,
sep=",", na.strings="NA", dec=".", strip.white=TRUE)
DsnRADAM <- svydesign(id = ~RADAM.TAZ, weights = ~RADAM2005Pct, data =
SurveyData)
DsnLAWA <- svydesign(id = ~RADAM.TAZ, weights = ~LAWA2005Pct,
data = SurveyData)
MyBreaks <- c(0,5,10,15,20,30,40,50,60,80,100,120)
svyhist(~Miles2LAX, DsnRADAM, breaks=MyBreaks, main="Survey
weighted&q...