由买买提看人间百态

topics

全部话题 - 话题: time2
1 (共1页)
p***r
发帖数: 920
1
data new;
set old;
time2=0;
array t {4} (3 7 10 11);
do i=1 to 4;
if t[i]
D******6
发帖数: 6211
2
我现在的原始数据是一个数值变量,一个相对SAS的60年1月1日的妙数,巨大的数字。
我现在想要把它转换成真正的时间,有无现成函数可以把这个变量转换成年月日小时分
钟妙?
比如我的原始数据是31536001,就是说距离1960年1月1日0点0分0妙是31536001妙,也
就是1961年1月1日0点0分1妙。
我希望 time1= 31536001, time2= 01-01-1961 00:00:01
我现在只有time1,没有time2。有无现成的函数可以生成time2?
谢谢解答,包子答谢。
p*******r
发帖数: 1951
3
来自主题: Statistics版 - 请教Reapeated measure mixed model
首先要明确你要做什么比较?看你说的意思你的null hypothesis是不是
H0: treatment effect = time2 - time1 = 0 ?
如果是,那你的dependent variable 完全可以用 effect = time2 - time1。而不是单
独的time1, time2。
其次,你的数据显示不同的subject有完全不同的时间点, 看你的SAS程序里面也根本
没有用到时间变量week。所以你想做的不是longitudinal data analysis?你只是想比
较不同treatment, pre-, post- response的差别。这样的话用repeated measure
ANOVA就成了。
很久没有用过mixed model了。说的不对的地方大家指教。
j******o
发帖数: 127
4
来自主题: Statistics版 - 请教:SAS处理Longitudinal data 的问题
You should modify like below (can be optimized to reduce loops to save time):
data obtain;
set have nobs=nobs;
TU24=0;
do i=1 to nobs;
set have (rename=(subject=subject2 time=time2 units=units2)) point=i;
if subject2=subject and abs(time2-time)/(60*60)<=24 then TU24=TU24+
units2;
end;
if TU24>5 then delete;
drop i subject2 time2 units2;
run;

发帖数: 1
5
来自主题: Statistics版 - 问个统计问题
47 subjects
每个subject测量了2次(time1 and time2),想知道这2次的测量值有没有difference
我知道最简单的就是跑个paired t test
问题的关键是这47个subjects的measure是在三个不同的地方采集的(采集的protocol还
不太一样),而且年龄,性别分布都不一样,
所以我能想到的是
Y=Y0+age+sex+site_index来remove掉 age/sex/site_index的影响
但是之后我就不知道怎么来比较time1 vs. time2
我之前想的是拿Y=Y0+age+sex+site_index这个fitting之后的residual值来
做paired t test,但是time1的fitting和time2的fitting不一样啊,能这么比较吗?
思路有点乱,哪位朋友帮忙理一下,谢谢
祝新年快乐!
g****t
发帖数: 31659
6
来自主题: Programming版 - [bssd] Emacs/vim 花时间是值得的。
我十几年前MS Word的VBA很熟。花了不少时间把上海市政府一个部门所有文件做了分析,
提取出来名词术语。尽量让“下岗”这样的词的用法无矛盾。干的多了,我发现写程序
其实应该用word写。但是word虽好,却不支持这个功能。
好在emacs/vim支持。
对编辑器进行程序化操作,可以人机深度融合,改造working flow,提升编程的维度。
编辑器最后其实就是meta-meta-meta-。。。-programming
我举个最简单的例子。例如你有个python pandas s,其中一列为time。
现在想转成一个数组名字为time。
time=np.array(s['time'])
现在想几十列都这么办,怎么最快的做到?在python的空间里这是不容易的。
和之前我提问过的那个找到变量名字的问题有点关系。不是熟练工恐怕搞不定。
而且还容易出bug难维护。python 2 升级这种事再来一次,程序说不定就废了
但是在org-mode里,上面一段程序自动生成一长条程序,几十个
time=np.array(s['time'])
time1=np.array(s['time1'])
t... 阅读全帖
m******r
发帖数: 1033
7
来自主题: Programming版 - [bssd] Emacs/vim 花时间是值得的。
最简单的方法生成如下格式
time=np.array(s['time'])
time1=np.array(s['time1'])
time2=np.array(s['time2'])
只需在excel里第一列先输入1,然后输入A1 +1, 然后下拉, 第二列用concat函数写你
要的东西,然后下拉,最后copy ,paste到编辑器即可。
n******g
发帖数: 2201
8
来自主题: Programming版 - [bssd] Emacs/vim 花时间是值得的。
哈哈 可以 但是如果你在server 上干活 没有excel可用
这种情况常见
[在 magliner (magliner) 的大作中提到:]
:最简单的方法生成如下格式
:time=np.array(s['time'])
:time1=np.array(s['time1'])
:time2=np.array(s['time2'])
:只需在excel里第一列先输入1,然后输入A1 +1, 然后下拉, 第二列用concat函数写你
:要的东西,然后下拉,最后copy ,paste到编辑器即可。
t******l
发帖数: 32
9
来自主题: Statistics版 - 如何对这个数据做统计模型?
Why can't you treat X_TIME1and Y_TIME2 as time varying covariate with X_
TIME1=0 for t>TIME1 and Y_TIME2=0 for t
m******3
发帖数: 62
10
来自主题: Statistics版 - mixed model DF 问题
我用SAS run
proc mixed data=mix method=reml noclprint;
class ID treatment;
model score=treatment treatment*time1 treatment*time2
/solution noint;
random intercept time1 time2/subject=id;
repeated/subject=id;
weight wgt;
run;
结果DF 为0, 无法得到p-vlaue. 那位大牛给s说说,问题在哪呢?
谢谢
l****u
发帖数: 529
11
来自主题: Statistics版 - mixed model DF 问题
If time1 and time2 are random effects, treatment*time1 and treatment*time2
should also be random effects. Then both of them should
be put in the random statement.
S******J
发帖数: 30
12
来自主题: Statistics版 - mixed model DF 问题
1. Most of the time you should not use Random and Repeated cards at the same
time.
2. You only need time1 and time2 in the Random card, not treatment*time1 and
treatment*time2.
3. You may want to specify the variance structure as well.
j******o
发帖数: 127
13
来自主题: Statistics版 - 请教:SAS处理Longitudinal data 的问题
如果你的data不是特别大并且想使用data step:
data have;
input subject time : datetime. units;
format time datetime.;
datalines;
1 19JUN13:13:09:00 1
1 20JUN13:10:09:00 1
1 22JUN13:02:12:00 2
1 22JUN13:08:12:00 4
1 24JUN13:08:12:00 3
2 17JUN13:12:33:00 1
2 21JUN13:15:03:00 1
;
run;
data obtain;
set have nobs=nobs;
by subject;
retain Max_TU24;
if first.subject then Max_TU24=0;
TU24=... 阅读全帖
m*****r
发帖数: 51
14
来自主题: Statistics版 - 急请教一个sas 问题
我有observations with different starting points. 比如, 第一个人1月开始赚钱
, 第二个人2月开始赚钱, 第三个人4月开始赚钱。 现在我需要把所有的人在第一个
月赚的钱放到一个variable (time1)下, 第二个月(2月,3月,5月)的放到同一个
variable (time2)下, 依次类推, 对每个人都要看开始赚钱后接下来的24个月。 有没
有什么办法create time1-time24. 如果24个时间点一个个的来, 太慢了。
例子来了:
原data
ID Jan Feb March April May Jun ....Dec
1 20 30 40 50 0 50
2 10 15 20 25 30
3 30 30 40
我需要的是
ID time1 time2 time3 time4 ...tiimeN
1 20 30 40 50
2 10 15 ... 阅读全帖
w*******y
发帖数: 60932
15
Link:
http://bedeals.com/
Product Details
Motorola T325 Advanced In-Car Speakerphone
-Entry On/Exit Off
Automatically turns on when you get into your car and off when you get out.
-Universal Harmony
Connect our car kits to any compatible Bluetooth-enabled phone on the planet
- including Nokia, Samsung, LG, iPhone, Blackberry and more.
-Bing
Bing 411 is the fastest way to stay connected and get the information you
need when you're on the go-for free.
-Who's Calling
Audibly announces the names of ... 阅读全帖
z*******3
发帖数: 13709
16
生物从不懂到懂,两年够不够?
如果full time2年,part time应该就只要4年
这个还是ok的,对我来说,我高中化学学得很好的
生物没怎么认真学,因为我知道我高考肯定不会选生物
B*Z
发帖数: 7062
17
来自主题: Automobile版 - 2016 MDX: it is official now!
9AT 66 lbs lighter, new SH AWD 19 lbs lighter.
发动机,变速箱,AWD,接近完美的家用车
http://hondanews.com/releases/2016-acura-mdx-specifications-fea
http://www.vtec.net/news/news-item?news_item_id=1222143
Feb 3, 2015 - TORRANCE, Calif.
The significantly upgraded 2016 Acura MDX, America’s best-selling three-row
luxury SUV, launches next month with multiple new features and technologies
, a more advanced powertrain and an expanded model range. The enhanced 2016
MDX provides even more advanced technology and exhila... 阅读全帖
w****z
发帖数: 1167
18
我在whole foods买的organic的,叫什么healty time2。看来只能看着她磨一会儿就要
抢过来了
s****a
发帖数: 1424
19
我早餐吃2个鸡蛋+半片面包+1cup小黄瓜。
其实打心眼里说,肚子象掉了一个豆:(饿的要命,急急的盼着1小时后测完血糖再补
充。
如今特别喜欢吃butter,每次吃面包的时候摸的满满的。
lzmm挨饿是一个过程,饿着饿着就麻木了。不过确实要充分利用好 snack time,我以
前饿的发慌也不敢多吃,如今snack time2小吃补一顿,饥饿感相对少很多
H********g
发帖数: 43926
20
这个视频底下很多比较搞笑的评论
ilikethingsfromjapan2 months ago
i think the man who lives next door to me has one of these machines
===
pace Time2 months ago
How come there are no women working there? Is it because of sexism?
jz4156502 months ago
It's cause the blonde one got lost
Joshua m2 months ago
Were Men are men and women are women. Shit if women want to be equal I say
Okay I will stay home cook and clean. you go forge some steel. make sure to
keep them tits tucked in.
===... 阅读全帖
s******z
发帖数: 1475
21
来自主题: Zhejiang版 - 我老给你们来讲讲八字。 (转载)
Google了1个link,可以查的~~
http://www.pinpinyao.cn/time2.asp
c**t
发帖数: 2744
22
来自主题: BuildingWeb版 - 大家来讨论一下TRACKING AND LOGGING吧
awstats doesn't track clickstream.
For example:
Visitor A:
[time1] page 1 (entry page)
[time2] page 2
...
[timeN] page N (exit page)
awstats only count how many entry pages and exit pages, no break down.
Do you know any of software to track the breakdown?
s*i
发帖数: 5025
23
难道不是 Time2的时候, v 已经是 4了吗?

synchronized
[发表自未名空间手机版 - m.mitbbs.com]
s********k
发帖数: 6180
24
来自主题: Programming版 - Querying JSON in Postgres
能不能直接对JSON中的field做query,比如我的表里面有field是一个JSON的stream
[{time1:value1},{time2:value2}...],希望对特定的time或者特定比如大于某个值做
query
s********k
发帖数: 6180
25
来自主题: Programming版 - Querying JSON in Postgres
比如我把一个JSON的stream存在MongoDB
[{time1:value1},{time2:valu2}...]
CREATE TABLE json_test (
id serial primary time,
data jsonb
);
然后做
SELECT * FROM json_test WHERE Value>threhold?
这样的可以
g********e
发帖数: 131
26
来自主题: MedicalCareer版 - Emma 座谈会(2)step 3 征文
谢谢EMMA,DAISY.
1.如何阅读STEP3考经
看写考经者的背景,STEP1/2成绩,考STEP3目的。
2.STEP3只要求PASS--CK成绩,距离CK多远。直接UW MCQ部分,至少一个月有余,60%
正确率。NBME考试前评估。
3.STEP3考高分
做题速度+临床思维。
MCQ--网传短时间很难提高MCQ。但肯花时间学MCQ实际会长很多分数。对于读书--做
题学习方式,放弃,不适用于STEP3。不是考知道多少东西,考的是临床思维。注意培
训自己的临床思维。在具体题干下,第一感觉是什么。做题是王道!UW题目虽少,但很
难。刚做题时按SUBJECT做,不要MIXED.作自己笔记,不要记书上。内科非常难,内分
泌巨难。精神科比CK多些,其它与CK差不多。儿科最容易。题库FULL TIME2个月才能完
成。单位时间需完成很多题,所以考试时每道题只看一遍。每道题都需要从头读到尾,
无捷径。仍然可以先读最后的问题。
CCS--20-25%.FAIL 3 CASES FAIL TEST.
4.看书MTB3,虽然涵盖不全。看2遍。
88个CASE没有用处。不是考的知识量,是临床反应。... 阅读全帖
d****y
发帖数: 2180
27
来自主题: MedicalCareer版 - [合集] Emma 座谈会(2)step 3 征文
☆─────────────────────────────────────☆
daisyy (daisy) 于 (Thu Aug 23 20:04:59 2012, 美东) 提到:
请大家把记录的笔记,感想放到这个帖子下面,以便于收精华区。
同时也保证你成为以后会议的VIP.谢谢!
☆─────────────────────────────────────☆
kitty2010 (麦地乖乖猫) 于 (Thu Aug 23 20:32:51 2012, 美东) 提到:
Great!
☆─────────────────────────────────────☆
ilovemilktea (milk tea) 于 (Thu Aug 23 21:04:28 2012, 美东) 提到:
Emma-step3
反正要认真学习不要侥幸心理。
Ccs: short,pdf88case用处不大,尽早做UW52case.内外妇儿,急诊门诊病房,万变
不离其宗。练习时建议分科做,提前做,UW多做几遍,建议4遍以上,CD界面要尽早熟
悉,
MCQ:临床思维-第一反应
复习... 阅读全帖
m******r
发帖数: 1904
28
☆─────────────────────────────────────☆
daisyy (daisy) 于 (Sat Aug 25 19:06:16 2012, 美东) 提到:
☆─────────────────────────────────────☆
daisyy (daisy) 于 (Thu Aug 23 20:04:59 2012, 美东) 提到:
请大家把记录的笔记,感想放到这个帖子下面,以便于收精华区。
同时也保证你成为以后会议的VIP.谢谢!
☆─────────────────────────────────────☆
kitty2010 (麦地乖乖猫) 于 (Thu Aug 23 20:32:51 2012, 美东) 提到:
Great!
☆─────────────────────────────────────☆
ilovemilktea (milk tea) 于 (Thu Aug 23 21:04:28 2012, 美东) 提到:
Emma-step3
反正要认真学习不要侥幸心理。
Ccs: short,pdf8... 阅读全帖
p********0
发帖数: 186
29
OK,
let me ask the same question the other way around
Why the average interest rate over 2 years is the simple average of
short term rate over(time0, time1, time2)???
If I understand correctly, interest rate at time0 are from now till 1 year.
interest rate at time1 is from 1 year till 2 year.
So if I want to get the average interest rate over 2 years horizon, why
isnot it the
average of (r(time0)+t(time1))?
p********0
发帖数: 186
30
来自主题: Quant版 - Black Model to valuate swaption value
Hi,
I am using simulation to estimate the swaption value.
I have 500 unique paths of short rate over the next 10 years.
I am trying to use the Black model the valuate the 1 year into 1 year
european option.
In order to use the Black model, I need to figure out the Forward swap rate
volatility.
For each path, The forward swap rate can be backed from FSR(1, 2) = D(0, 1)
- D(0, 2)/Annuity(0, 1, 2).
Since I have short rate for time1, time2, so I can easily get the D(0,1)=EXP
(-AVG(r0, r1)*1). So I c
P******e
发帖数: 75
31
我们从Literature里收集了很多关于牛奶中18种氨基酸的含量的数据,每个数据点是文
献当中的平均值。不同文章的牛奶在不同时间收集,不同地方来源.
数据整理后,我们想看一下不同因子有没有影响。
从三个因素考虑,分别是time,region,term.数据是不平衡的.
下表标出了其中两个因素。每个格子里面是多少个观测点。可见是很不平衡的。
Region1 Region2 Region3 Region4
time1 . 6 2 1
time2 . 7 2 3
time3 1 8 7 5
time4 1 11 4 5
time5 3 10 . 2
我们有几个问题请教:
1. 由于我们的每个数据点是每篇文献当中的平均值,能用ANOVA么?数据好像不是很正态
分布。要检测Assumptions?
2. 对我们这个unbalanced的数据处理,可以做Three-way ANOVA么?
3. 用proc GLM, Model AA1 AA2=tim
d*******o
发帖数: 493
32
来自主题: Statistics版 - 求一个简单点的方法写一段SAS
/*SET UP A RESULT DATASET*/
data result;
do id = 'a', 'b', 'c' ;
output;
end;
run;
/*SPECIFIC INTERVALS ARE ASSIGNED*/
%macro summary2(time1, time2, time3, time4);
%do i=1 %to 4;
proc sql;
create table result as
select a.*, b.first&&time&i
from result as a, (
select id, sum(sale) as first&&time&i
from test
where day le &&time... 阅读全帖
c**********5
发帖数: 653
33
来自主题: Statistics版 - mixed model DF 问题
First all,if if time1 and time2 in the interaction term,shoud it in the
model first?
l****u
发帖数: 529
34
来自主题: Statistics版 - mixed model DF 问题
大侠,能给解释一下吗?
他把time1 and time2 设为random effect,那么treatment*time也应当为random
effect
呀,或者至少不能放在model中啊。
多谢了

same
and
d**********r
发帖数: 24123
35
来自主题: Statistics版 - mixed model DF 问题
你的 treatment*time1 或者 treatment*time2 只有一个对应的sample了吧。
每个effects没有>=2 的 repition, 你的DF 就会为0了。
s*****e
发帖数: 157
36
来自主题: Statistics版 - 请教Reapeated measure mixed model
在以下dataset中,每个id在不同的星期可以重复参与不同的treatment(A或B),最后参
与的模式包括A,B, AB,AA,BB,ABB,AAB等等,同时每个id在同一个tr下分别在time1和
time2测量了一次.所以一个id可能有多个repeated measure.
我想建个mixed model比较tr对response的影响
proc mixed;
class id tr time;
model response=tr|time;
repeated /subject=id;
run;
程序无法运行,可能因为同一个id在同一个time有多个observation,这种情况怎么处理
呢?请大家支招,多谢!
dataset:
id week tr time response
01 1 A 1 xx
01 1 A 2 xx
01 2 A 1 xx
01 2 A 2 xx
01 3 B 1 xx
01 3 B 2 xx
02 1 ... 阅读全帖
s*****e
发帖数: 157
37
来自主题: Statistics版 - 请教Reapeated measure mixed model
time1是pre, time2是post,所以要比较。week是随机对应两种tr的,我不知道还要不要
考虑?
structrure随便给了一个。error具体不记得了,但似乎是由于多个repeated measure
导致的
s*****e
发帖数: 157
38
来自主题: Statistics版 - 请教Reapeated measure mixed model
time1 和 time2 各一次,这个不是导致错误的重复阿
j*******y
发帖数: 58
39
来自主题: Statistics版 - 请教Reapeated measure mixed model
you have the hell 2 weeks at time1 and 2 weeks at time2. look at the hell
subject 4.
s*****e
发帖数: 157
40
来自主题: Statistics版 - 请教Reapeated measure mixed model
但是我要比较time1(pre)和time2(post)response的不同,如果time和week混起来,怎
么比较呢?
j******4
发帖数: 6090
41
variables: Age(in month) Female(dummy), Smoke(dummy)
outcome(counts): time1 time2 time3 time4
Reshaped into long form then the data looks like this:
ID time Y Age Female Smoke
1 1 0 30 1 1
1 2 1 30 1 1
1 3 5 30 1 1
1 4 2 30 1 1
...
可以用GEE或者mixed model,但是据我观察,在 time=1 的时候,会有很多 Y = 0,我
在想 Zero-Inflated-Poisson(ZIP) 是否可以用来分析这种repeated measures的data,要
如何用呢?
多谢各位~
g*********d
发帖数: 24
42
来自主题: DataSciences版 - 刚电面一个,fail了
一家小破公司,开始没当回事,后来发过来几道题,都sql,让做。
然后给跪了,很受打击!
最后一道题到现在没想明白是不是不用cursor根本就做不出来。
id1 time1 1
id2 time2 1
id3 time3 1
id4 time4 2
id5 time4 1
id6 time5 2
id7 time6 2
....
求所有同样数字连续超过三次的纪录。大概就这个意思吧,比如上面的例子中,1就是
符合条件的,因为连续时间段内出现了三次,但是2就不行,因为三个2中间插了一个1.
a****k
发帖数: 117
43
来自主题: DataSciences版 - 刚电面一个,fail了
If using mysql, we can use self-join.
id, time, num
id1 time1 1
id2 time2 1
id3 time3 1
SELECT DISTINCT (a.num) FROM table a JOIN table b ON a.num=b.num JOIN table
c ON a.num=c.num WHERE a.id-b.id = 1 and b.id-c.id=1
1 (共1页)