search for: radam2005pct

Displaying 2 results from an estimated 2 matches for "radam2005pct".

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 compare the weighted...
2009 Feb 07
0
Problems with svyhist
...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",col="purple",ylim=c(0,0.05)) svyhist(~Mil...