Displaying 2 results from an estimated 2 matches for "miles2lax".
2009 Feb 06
0
Comparing weighted histograms?
I'm trying to plot and compare weighted histograms and I can't seem find
where to start. I have data similar to this:
Miles2LAX RADAM2005Pct LAWA2005Pct
35.57 .00123 .00684
24.74 .00118 .00187
27.09 .00965 .00876
16.23 .00587 .00397
{ ... 87 rows}
And I'm trying to compa...
2009 Feb 07
0
Problems with svyhist
...ngs="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",col="purple",ylim=c(0,0.05))
svyhist(~Miles2LAX, DsnLAWA, breaks=MyBreaks, main="Survey
weighted",col="cyan", ylim=c(0,0.05))
#####################################
SurveyData <- read.table("...