Displaying 3 results from an estimated 3 matches for "westbound".
Did you mean:
eastbound
2008 Aug 14
2
Simple (?) subset problem
...a simple issue,
but I'm stumped. I either get all or none of the original "rows".
> XTTable <- xtabs( ~ direction_ , SurveyData)
> XTTable
direction_
EASTBOUND
345
WESTBOUND
307
> EBSurvey <- subset(SurveyData, direction_ == "EASTBOUND" )
> XTTable <- xtabs( ~ direction_ , EBSurvey)
> XTTable
direction_
EASTBOUND...
2013 Apr 01
2
[Possibly OT] - General question: state of internet traffic
...owever, getting
bank record data from chase.com here in NYC seems impossible.
I also noticed erratic ftp behavior today; connections can be made but
data can't be transferred. This isn't consistent, though.
(I have a machine in LA while being in NYC; ftp traffic is difficult to
establish westbound; no problem eastbound).
I haven't done any sort of consistent test, so I am not sounding alarms.
I'm just trying to get a sense of where this is happening.
And is there a reliable source of information.
Much thanks
Max Pyziur
pyz at brama.com
2008 Aug 18
1
Survey Design / Rake questions
...s.numeric(SurveyData$lineon)-as.numeric(SurveyDat
a$lineoff))
> EBSurvey <- subset(SurveyData, direction_ == "EASTBOUND" )
> XTTable <- xtabs(~direction_ , EBSurvey)
> XTTable
direction_
EASTBOUND
345
> WBSurvey <- subset(SurveyData, direction_ == "WESTBOUND" )
> XTTable <- xtabs(~direction_ , WBSurvey)
> XTTable
direction_
WESTBOUND
307
> #
> EBDesign <- svydesign(id=~sampn, weights=~expwgt, data=EBSurvey)
> # svytable(~lineon+lineoff, EBDesign)
> OnLabels <- c( "Warner Center", "De...