Displaying 2 results from an estimated 2 matches for "radam".
Did you mean:
radar
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 w...
2009 Feb 07
0
Problems with svyhist
...t two
distributions in the same graphic to visually compare them.
2) I get uniform breaks at intervals of 10. I 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 &...