Displaying 3 results from an estimated 3 matches for "eastbound".
2008 Aug 14
2
Simple (?) subset problem
...I need to get subset to work. I'm trying
to split my dataframe into two parts. I'm sure this is 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 <-...
2013 Apr 01
2
[Possibly OT] - General question: state of internet traffic
...ecord 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
...rveyData$direction_)
> SurveyData$direction_ <- temp
>
#=======================================================================
========
>
SurveyData$NumStn=abs(as.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
> #
>...