M******l 发帖数: 1012 | 1 Cow! if you wear Laker color in Boston, u will get beat up too. Laker fans
are mellon comparing to Doger fan. One SF Giant fan was killed in the
Doger game. |
|
y****r 发帖数: 3036 | 2 近几年棒球最大的trade。。。
谢谢这三个players给redsox带来的回忆,一路顺利。
话说dogers真是有钱,不愧是纽约托生的。
希望redsox能早日重振雄风,其实目前现有的球员加上几个reliable的pitchers,仍然
是支季后赛的contender。 |
|
a******r 发帖数: 786 | 3 很多usc 的愿意住解放区,开车可能要1个小时以上。如果要住解放区,建议住离710
那个入口很近的地方
monterey park 算是解放区的老区了。早上开60 也是比较头痛。但是如果你愿意开
local,可以走washington bl,因为挨着铁路, 基本没有什么traffic,红绿灯也不密
集,只有到downtown 那稍微有些多,可以一直开到usc 那边。
也有住西区的,比如west la ,culver city,palms之类的,那里ucla 的学生比较多
,黑人还好,不算特别多。晚上溜个狗也没事。
south pa 的话早上要走110, 早上大概7am 之后就可以从doger stadium 一直堵到usc
,但是总路程应该在1小时一下。下午回去的路程要久一些,1hr 开外了。
不是狠建议住k town,住在那里的很多人最后都搬到了解放区之类的地方
如果你是在medical center 那边,Soto St,可以选择south pa, 开local都能到。 |
|
Y*****s 发帖数: 342 | 4 Sorry it's difficult for me to type long chinese, just type english here.
1st round: As planed, I would pick a premier C as 1st rounder. Considering
my draft oder is low, my target was IROD. FFDT, someone picked IROD and
no one wanted Pizza. I was very happy about this pick.
2nd round:I was debating long time Manny and Green who's better. Manny
can be decently productive in 4 categories but Green can steal. Considering
Shaffield left Doger, I picked Manny. After I drafted, found Helton still
the |
|
w*****r 发帖数: 405 | 5 Much better balanced than Dogers and Phillies. Wohahaha |
|
w*****r 发帖数: 405 | 6 I'd rather see cards facing dogers than rockies |
|
u**o 发帖数: 4652 | 7 2b is a ridiculous valuation on LA dogers
1.1b at most |
|
a********l 发帖数: 39524 | 8 去年dogers那个kuroda被击中脑袋,球居然弹到dugout后面看台上了,算成ground
rule
double。
可见人的脑壳是多么坚硬。。。 |
|
t****g 发帖数: 35582 | 9 加了free的话只能在wifi下收。
不过这东西一点都不可靠。我在doger上订了些中文杂志啥的,经常时有时无。自己给
kindle发倒是没问题,但是投递的接口好像不是很可靠。
另外就是杂志的界面和ipad版的那真是一个世纪的差距。比如ipad版的wsj。 |
|
t****g 发帖数: 35582 | 10 嗯,kindle+多看就适合你这样存了一大堆pdf的人,我就是每天看几十分钟报纸,还是
ipad最爽。
kindle的那个doger推送也不是很靠谱,经常收不到,资源也不丰富。
PDF |
|
k******u 发帖数: 250 | 11 数据为csv file
如下:
123,"Harold Wilson",Acct,01/15/1989,$78,123.
128,"Julia Child",Food,08/29/1988,$89,123
007,"James bond",Security,02/01/2000,$82,1000
828,"Roger Doger",Acct,08/15/1999,$39,100
900,"Earl Davenport",Food,09/09/1989,$45,399
906,"James Swindler",Acct,12/21/1978,$78,200
comma是delimiter.
写了程序如下,
data Employ;
infile 'C:employee.txt' dsd;
input ID : $3.
Name : $20.
Depart : $8.
DateHire : mmddyy10.
salary : dollar8.
;
ru... 阅读全帖 |
|
d******9 发帖数: 404 | 12 It is very annoying to deal with flat files.
One solution is to read in all the other variables using your code EXCEPT
the Salary. And use _N_ to tag the number of observations.
Then use below codes to read in the Salary column: Read the whole record as
one variable, then extract the dollar amount.
data Salary;
length raw $200;
infile cards missover ;
input raw : & $1-200;
N=_N_;
I=find(Raw, '$');
S= substr(Raw, I);
Salary=input(S, dollar12.);
cards;
123,"Harold Wilson",Acct,01/15/1989,$78,123.... 阅读全帖 |
|
d******9 发帖数: 404 | 13 A better method:
You can read in the value of Salary into 2 separate vars, then concatenate
them together, and convert it into numeric by Input function.
data Employ;
infile cards dsd missover ;
input ID : $3.
Name : $20.
Depart : $8.
DateHire : mmddyy10.
S1 : $8. S2 : $8. ;
S=strip(S1) || strip(S2);
Salary=input(S, dollar12.);
cards;
123,"Harold Wilson",Acct,01/15/1989,$78,123.
128,"Julia Child",Food,08/29/1988,$89,123
007,"James bond",Security,... 阅读全帖 |
|