由买买提看人间百态

topics

全部话题 - 话题: dummies
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)
b******s
发帖数: 325
1
新手急需要帮助解释下REGRESSION COEFFICIENT.谢谢帮忙先!!!
Model:
Dependent var: Delta Y (which is the outcome change between baseline and a
follow-up measurement point)
Indepdent vars: baseline score category 1, baseline score category 2 (NOTE:
category 3 is the omitted category), plus a bunch of "state" dummies (VA, IN
, MD with MS as the ommited category) and a "treatment model" dummy (where 1
= diversion; 0, transition).
QUESTION 1:
So the constant is interpreted as "the average outcome change for population... 阅读全帖
t***k
发帖数: 30
a**a
发帖数: 416
3
来自主题: Science版 - Re: 一个计算效率问题
如果你使用VC, 我建议你用
const divider = 127773;
const dummy = value / divider
const remainder = value % divider; // VC 会把这两个操作合为一个
value = 16807 * remainder - dummy * 2836;
这样就省了一个乘法一个减法。
h******n
发帖数: 232
4
来自主题: Statistics版 - 请教 sas regression 问题
在proc glm中,可以用class命令得到同一个variable不用的value的coefficient。例
如:
variable x 有1,2,3,4,5,6六种值, y有1,2,3三种值。
proc glm data = test;
class x y;
model z = x y x*y/solution;
run;
我们可以得到
x 1
x 2
......
x 6
y 1
y 2
y 3
x*y 1 1
x*y 2 1
......
x*y 6 3
请问,如何用proc reg 得到以上结果?如果用dummy variable,怎么处理x*y?有没有
办法不用把所有的dummy variable全列出来一个一个相乘?
谢谢!
a********a
发帖数: 3176
5
来自主题: Statistics版 - put statement in macro
Hi could anyone help me?
I need to use put statement to show some values by each ID. Each record have
different length of duration in a time line (Timeline_length has value 1-
300), and the maximum is 300 weeks, so everybody has 300 dummies (
Progbyweek1-Progbyweek300), but they are missing for the weeks outside the
time line (some, say, has Progbyweek255 and after as '.') I only want to
show the value of weeks for which the dummy is not missing (for that case, I
only want to 'put' till week 25
c****s
发帖数: 63
6
来自主题: Statistics版 - 请问:如果Odds Ratio 小于1怎么办?
Y: Death=1
X: Dummy variables(ccs1 - ccs 200) and some other variables
我的logistic Model 中有很多dummy variables, ccs1 - ccs 200, 出来的结果有一些
ccs 的odds ratio >1 ,但也有一些小于1。 请问,我是不是应该只保留那些大于1的
ccs 而去掉那些小于的呢?
还望各位前辈不吝赐教!先谢谢了!
c****s
发帖数: 63
7
来自主题: Statistics版 - 请问:如果Odds Ratio 小于1怎么办?
是不是我说的不清楚啊,怎么没有人回呢?
要建立一个logistic Model,X 中有很多dummy variables, ccs1 - ccs 200, 出来的
结果有一些 ccs 的odds ratio >1 ,但也有一些<1。 请问,我是不是应该只保留那些
大于1的ccs 而去掉那些小于的呢?
Y: Death=1
X: Dummy variables(ccs1 - ccs 200) and some other variables
谢谢各位大虾了,帮我看看该怎么办好不好
o******6
发帖数: 538
8
来自主题: Statistics版 - [合集] a R question
☆─────────────────────────────────────☆
shawjone (保持一个良好的心态) 于 (Thu Mar 19 15:00:56 2009) 提到:
how to convert a categorical variable into dummy variables in R?
thanks
☆─────────────────────────────────────☆
songkun (告别棒球场) 于 (Thu Mar 19 15:32:42 2009) 提到:
最直接的办法, 就是写loop. 或者干脆一个个的人工构造.
如果你对R的操作相对比较熟, 有很多tricky的方法可以实现.
比如用outer(外积)函数. 这类做法一般非常漂亮, 但程序可读
性较差, 除非执行效率是主要考虑因素(比如有太多dummy变量)
一般还是尽量不要这么写.
data <- data.frame(
catvar = as.factor(rep(c("Mon", "Tue", "Wed", "Thu", "Fri"), each=100
c****o
发帖数: 69
9
谢谢你。
MERGE变量我想说的是比如本来一个变量有好5个LEVEL的,然后用了4个DUMMY VARIABLE
,但是如果MERGE其中的几个LEVEL,那么就会少用一些DUMMY VARIABLE了。。。
我想知道,MSE变小又能说明什么???
对于REGRESSION来说,具体的意思在哪里?

期望
l*********s
发帖数: 5409
10
the difference is between scaled variables and ordinal variables
a*********r
发帖数: 139
11
Yes. A statistic depends only on the sample not the parameters involved.
Please read my answer carefully. Considered as a fucnction, L_X(\codt) is
completely specified by the sample. There is no parameter involved!
Here theta is a dummy variable. Just as f(x) is a function, then x is a dummy variable, you can call it theta, beta, t, s, whatever.
This answers the original question: whether we have a sufficient statistic if we allow h=1 which is always legal? Yes. We can always let h=1 in the Fact... 阅读全帖
s***r
发帖数: 1121
12
来自主题: Statistics版 - SAS question - baozi
Suppose in a regression, I have 1900 independent variables, among which
1890 are dummy variables. So, in the regression output, I do not want it
to show all 1900 parameters as it will take too much space. All I want is
the output of the remaining 10 parameters; not dummy variables.
Is there a SAS statement that can suppress the output of these 1890
parameters (and their t-statistics, standard errors, etc.)
Thank you. 5 bao zi will be given.
s***r
发帖数: 1121
13
来自主题: Statistics版 - SAS question - baozi
I used Noprint already. What I want is not to output regression results for
these dummy variable, only show the regression results for other non-dummy
variables.
n**m
发帖数: 156
14
I think dummy variable is also an option. Usually I see at most 4 options in
mail subscription.
1. immediately 2. daily 3 weekly 4 monthly
As I see, to set up 3 dummies for the variable is very intuitive and easier
to explain.
s**********l
发帖数: 395
15
You means creating a dummy variable A, if the predictor's value is missing
then set A=0, else set A=1?
If the input variable which has many missing values is continuous variable,
is it still OK to use dummy variable?
Thanks.
b******s
发帖数: 325
16
新手急需要帮助解释下REGRESSION COEFFICIENT.谢谢帮忙先!!!
Model:
Dependent var: Delta Y (which is the outcome change between baseline and a
follow-up measurement point)
Indepdent vars: baseline score category 1, baseline score category 2 (NOTE:
category 3 is the omitted category), plus a bunch of "state" dummies (VA, IN
, MD with MS as the ommited category) and a "treatment model" dummy (where 1
= diversion; 0, transition).
QUESTION 1:
So the constant is interpreted as "the average outcome change for population... 阅读全帖
j******4
发帖数: 6090
17
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,要
如何用呢?
多谢各位~
d****y
发帖数: 398
18
现在的问题是: 我有650个人 按照一定的规则被分在了15个组 现在需要看一个
outcome variable的结果 (也就是个很简单的anova 或者create dummy variables 做
regression的问题) 但是有的组按照规则就只有一个人在里面 想问问这种
unbalanced的情况 一般的anova/ancova或者dummy variables的方法还可以用吗 或者
有什么别的方法能用的吗 多谢了 包子答谢
S******y
发帖数: 1123
19
来自主题: Statistics版 - Representation of Categorical Features
You could create Dummy Variables in R -
#Generate example dataframe with character column
example <- as.data.frame(c("A", "A", "B", "F", "C", "G", "C", "D", "E", "F"))
names(example) <- "strcol"
#For every unique value in the string column, create a new 1/0 column
#This is what Factors do "under-the-hood" automatically when passed to
#function requiring numeric data
for(level in unique(example$strcol)){
example[paste("dummy", level, sep = "_")] <- ifelse(example$strcol ==
level, 1, 0)
}
s******r
发帖数: 27
20
来自主题: DataSciences版 - Project :advertersiment click prediction
我倒不是有很多dummy ariable .这么说有一个variabe 是 cit里面y有5000多个不一样
的city.但是我比如做logit,我不可能把这一个variable转化成5000多个dummy
variable,在把这些variable带到model里面。我就是全部都是这种类型的variable,
比如city(5000多个),publisher ID(有2000多个publisher).这些variable都很重
要。我最后目的是把人分成两组 who click or not。
您的意思是把这些转化,比如city用1-5000的数字代替,但是这样的话,我可以把它们
当作countinue variable直接放入model里面???真是不好意思,以前没学过,不知
道怎么做了。还是我应该怎么做

发帖数: 1
21
是machine learning的课程项目。
我们的数据是unbalanced,大部分是continuous, 只有少数几列是categorical的,因为
我们要用到logistic regression, svm, 所以把categorical都转化为dummy variable,
结果在用SMOTE的时候这些dummy cariable都变成0到1之间的数据。
现在两个问题:
1)原本的class组成是10700 class-1, 1450 class-0;用完SMOTE, 数据变成 5500
class-1, 4100 calss-0; 这些categorical的数据不能单独拿出来呀? 本身SMOTE用的
就是点到点之间的距离来cluster这些点的;
2)现在想死马当活马来用,想把 《0.5 的归于0;》=0.5的归为1。

了很
E**********e
发帖数: 1736
22
SMOTE 不复杂啊。你读原作者的文章,你可以CODE 出来的啊。当然原作者的终极版有
优化。
我同时用R 和 PYTHON code 了。但是最终实际效果在risk model 上表现不好。实际上
我也不看好这个方法。
至于CATEGORICAL 变量,可以算距离的,不需要处理成DUMMY 变量。然后用最近铃算法
,取majority vote.

:在没有把categorical data 变成 dummy variable的时候,用WEKA 能够生成出具体的
:哪一个州。但是WEKA,R studio 产生的结果不同。weka只是double minority class
, 保持majority class. 但是R studio 能够产生基本45%,55%的两个classes. 不知道
哪个是对的。

发帖数: 1
23
我有一个州的变量,总共10个不同的州。
我后面有个回复,没有变成DUMMY VARIABLE的时候,SMOTE是变成具体的州了,这个是
我后面又尝试的方法。
一开始的问题是:变成DUMMY VARIABLE后用SMOTE,州出来的不是0,1而是0-1之间的数
据。

level,

发帖数: 1
24
“ 至于CATEGORICAL 变量,可以算距离的,不需要处理成DUMMY 变量。然后用最近铃
算法
categorical变量应该不允许单独领出来按照这种最近令算法来吧?整个dataset是有
continouous 和 categorical。
打算用logistic regression, SVM来train model. 想问一下:你在处理mix dataset
的时候,都不需要把categorical变量变成dummy variable吗?
体的
class
t**********a
发帖数: 2869
25
来自主题: CellularPlan版 - ringplus 的手机坏了,怎么swap device?
首先确定SIM匹配,其次你现在手机上的sim不能直接拿下来用,要先swap到一个dummy
esn上,然后再从dummy换到moto+原来sim。

moto
K*******a
发帖数: 100
26
来自主题: CellularPlan版 - 问: ringplus swap device为什么总是出错?
我在今年一月份买的sprint moto e2上面用了几个月的r+(专门作android auto的手机
用), 现在觉得机子太卡, 于是在swappa上买了个二手nexus 5 (D820), 结果swap
device每次都出错:
"If this new device is currently active on any carrier, it must be
deactivated before swapping into your account.
If you entered an ICCID, please try without the ICCID."
swap的时候用的是n5的MEID/ESN和e2里面那张旧SIM卡的ICCID. 据n5机主说他原来也是
用ringplus的, 不过我之前在r+的BYOD页面上查了这台n5的MEID/ESN, 显示的是可以加
入ringplus, 应该没有问题. n5机主又说可能是SIM卡的问题, n5只能用SIMGLW206R.
我看了下, e2用的是SIMGLW236C的SIM卡.
1. 如果确实是SIM卡兼容性的问题, n5要用... 阅读全帖
f****o
发帖数: 4067
27
来自主题: CellularPlan版 - Tello可以换新号码吗?
找个dummy ESN注册新账户,拿个新号,至少冲5块钱话费。 然后再找个dummy ESN把老
帐号的电话swap出来。 最后把电话swap到新帐号。
f****o
发帖数: 4067
28
来自主题: CellularPlan版 - Tello可以换新号码吗?
找个dummy ESN注册新账户,拿个新号,至少冲5块钱话费。 然后再找个dummy ESN把老
帐号的电话swap出来。 最后把电话swap到新帐号。
t********i
发帖数: 7856
29
来自主题: _Auto_Fans版 - IIHS最近测了几辆车
IIHS最近测了几辆车:
(1) 2017 Chrysler Pacifica
Small overlap:第一次(2016/09以前生产)Restraints and dummy kinematics一项
得了P,把整个small overlap成绩拉到了M。于是赶紧补考,Restraints and dummy
kinematics问题是解决了(G),但是把Structure and safety cage从G拉到了A(不知
道是不是因为这个原因)。不过还好,overall总成绩总算是G。
侧撞-19.5,minivan里最强。超过Honda Odyssey 1厘米。
(2) 奔驰 W205 C-class
40%正面和侧撞早就做过了。这次把剩下的几项也都测完了。不出意外都是G。
亮点是:Roof strength测试SWR居然是7。peak force居然达到了24642 lbs。
24000以上的peak force基本上只有新款的 Luxury/Premier SUV 才能达到(XC90
23349,新Q7 24749,大卵狗 23602)。所以W205 roof stren... 阅读全帖
t********i
发帖数: 7856
30
来自主题: _Auto_Fans版 - IIHS最近测了几辆车
IIHS最近测了几辆车:
(1) 2017 Chrysler Pacifica
Small overlap:第一次(2016/09以前生产)Restraints and dummy kinematics一项
得了P,把整个small overlap成绩拉到了M。于是赶紧补考,Restraints and dummy
kinematics问题是解决了(G),但是把Structure and safety cage从G拉到了A(不知
道是不是因为这个原因)。不过还好,overall总成绩总算是G。
侧撞-19.5,minivan里最强。超过Honda Odyssey 1厘米。
(2) 奔驰 W205 C-class
40%正面和侧撞早就做过了。这次把剩下的几项也都测完了。不出意外都是G。
亮点是:Roof strength测试SWR居然是7。peak force居然达到了24642 lbs。
24000以上的peak force基本上只有新款的 Luxury/Premier SUV 才能达到(XC90
23349,新Q7 24749,大卵狗 23602)。所以W205 roof stren... 阅读全帖
w*******y
发帖数: 60932
31
来自主题: _DealGroup版 - 【$】Free eBooks from Dell
Dell is offering 2 free eBooks for download from:
Book 1: Mastering Microsoft Windows 7 Administration [Paperback]:
http://www.amazon.com/Mastering-Microsoft-Windows-7-Administration/dp/0470559845
$32 at Amazon
Book 2: Getting started in Networking and Security for Dummies. Printed by
Dell ?!
The Win7 is really good book, the Dummies one has a lot good info too.
The download link: Link:
http://content.dell.com/us/en/enterprise/large-enterprise.aspx?c=us&cs=555&l=en&s=biz&~ck=mn&redirect=1
m**v
发帖数: 373
32
有个问题,别人打我的GV,我的phonerlite(接在asteriskshang)能够接电话,如果对
方先挂电话,asterisk就会有个warning:
WARNING[1094]: features.c:5845 bridge_exec: Bridge failed because channel d
oes not exists or we cannot get its lock
是不是跟下面的extensions.conf里面的两行有关? 这两行什么意思呢?
exten => d***[email protected], 1, GotoIf(${DB_EXISTS(gv_dialout/channel)}?bridged
)
exten => _[a-z][email protected], n(bridged),Bridge(${DB_DELETE(gv_dialout/channe
l)}, p)
有的时候挂电话asterisk干脆就死了,有个问题,别人打我的GV,我的phonerlite(接
在asteriskshang)能够接电话,如果对
方先挂电话,asterisk就会有个warnin... 阅读全帖
s*u
发帖数: 1778
33
来自主题: _PerfectMoms版 - Visual basic
好你的head
是替我们家dummy问的
我能问这种dummy问题吗??
p*********g
发帖数: 9527
34
mainly for counter-terrorist, you dummy.
A***C
发帖数: 143
35
来自主题: ChinaNews版 - 社会创新之民主选举制度 (转载)
【 以下文字转载自 Sociology 讨论区 】
发信人: lonesomex (lonesomex), 信区: Sociology
标 题: 社会创新之民主选举制度
发信站: BBS 未名空间站 (Wed Jul 7 00:47:27 2010, 美东)
现行的西方民主选举制度大多数是基于一人一票的原则。这样的投票制度强调的是社会
基层的人人平等的话语权。其不足之处在于社会体系中精英们的声音不容易被直接的区
分出来,而只能通过媒体,政府幕僚体系等其他间接的途径表达,这种制度是西方最常
见的选举制度。
传统的选举制度基于一个假设,即集体中所有个体具有相近的智慧水平和判断能力,而
事实显然不是如此。一般来说,一个社会里,愚蠢的人往往是大多数。如果说这个社会
里总共只有10个人的话,那估计有7个愚蠢的,1个聪明的,还有2个从来不去投票的。
(这里的愚蠢指的是“麻木的,不聪明的”,并不是传统意义上的“笨”)
西方有一种理论是在投票过程当中,这些愚蠢的人的票可以相互抵消,意思是这些愚蠢
的人基本没有自己的主见,于是他们中一半的人随机投票选A候选人,另外一半的人随
机投票选B候选人,只要人... 阅读全帖
h******t
发帖数: 872
36
来自主题: ChinaNews版 - 外F必读
http://robertlindsay.wordpress.com/2010/08/03/evolution-of-high
Evolution of High IQ’s in Ashkenazi Jews and Chinese
A commenter asks the reason for the high IQ’s of Ashkenazi Jews:
What accounts for the higher Ashkenazi IQ? Is it from living in a cold
climate in eastern Europe instead of in their original sunny Mediterranean
homeland? Or perhaps Slavic genes?
Apparently selection. When the Ashkenazim went to Europe, Talmudic Judaism
unfolded around 1000 CE or so, and in order to be a Jew, a man... 阅读全帖
k*******s
发帖数: 639
37
search mp3 dummy
只有一首是日语的或者片段的,或者贼慢,根本下不来
不是做贼心虚是什么,
h*c
发帖数: 1859
38
你就用我的那个link好了
为什么要search MP3
dummy?
M******8
发帖数: 10589
39
【 以下文字转载自 Military 讨论区 】
发信人: Math1978 (数学), 信区: Military
标 题: Re: 当年党卫军恐吓李登辉的“新闻联播”
发信站: BBS 未名空间站 (Sat Nov 2 15:43:27 2013, 美东)
用的是dummy head。
解放军管假弹头叫“空包弹”,其实是用了一个错误的称呼,把枪炮使用的没有弹头的
“空包弹”的名称,使用在有弹头但是没有战斗部的导弹上了。
所以解放军从李登辉使用了解放军本来是用错了的词汇“空包弹”来称呼其实不是“空
包弹”而是“假弹头”的演习用导弹,推断出这一定是自己内部的间谍向李登辉通报的
,而不是台军发现的。
如果是台军发现的假弹头,他们只可能向上级汇报“共军打的是不会爆炸的假弹头”而
不会说“共军打的是空包弹”,因为那根本不是“空”包弹,而是“实”包弹——有配
重的东西,比如水泥石灰什么的。
现在李登辉说“共军打的是空包弹”,就是告诉了大陆“我的情报是从你们那边来的”。
这也是当前抓抄袭的一种办法——你沿用了我的错误,说明你是抄我的。
M***e
发帖数: 836
40
来自主题: Donation版 - 不会用paypal的看进来
我切了几张图,就当是paypal for dummies
如果你没有Paypal账号的话,按照以下的步骤就可以捐钱了
P*P
发帖数: 324
41
来自主题: History版 - 中国古代所谓帝王术
除了法家的那一套东东,还有什么?有没有谁推荐一本帝王术FOR DUMMY,或是LEARN 帝
王术 IN 24 HOURS看看?
h***i
发帖数: 89031
42
it is power balance。
Russia started the post war conflict using dummy Kim.
US fight back shirtless.
Russia do not want fight with us face to face, just to avoid A-bomb fight.
So russia hire chinese to push back to where it was at begining.
US understand Russia trying to avoid face to face fight.
if US use what ever he had to defeat China, US will put them self infront of
Russia, bif Chance of A-bomb fight, no winner.

infantry
s******o
发帖数: 194
43
Just talk to some industry quality control person
or read some dummy's book about management.
Could you sue that Nike because after you wear Nike shoes for several years
it begin to tear it apart and smell bad?
Probably NO. Because they did not say that their quality can match that.
If they say so, you can get a replacement in case they fail to match their
promise.
B**W
发帖数: 2273
44
来自主题: Military版 - 美帝统计局威武!
估计他们没读过经济学101, for dummies之类的东西.unemployment rate从一开始就是
这么算的,没什么值得大惊小怪的,而且还有年龄范围的.现在不是很多人开始算under-
employment rate来解决这个问题了么.
当时考虑的是不找工作的人是不需要工作的人,象gates一类的人物,结果现在是很多是
找了好久找不到工作,然后放弃(暂时或者永久),而靠救济,家庭,或者借贷的穷人.当然
也有少数趁机给自己放长假的牛人.
s****r
发帖数: 31686
45
嗯, 我俩说的一个玩意, 我拼错了, 不过我还有本 dummies for crockpot, 买了一
直没看
w********r
发帖数: 3183
46
包括那些老将, 你们这种独裁体制下培养出来的永远也不理解民主.
小将也就罢了, 老光看本Democracy For Dummies是不够的.
燕云十六州就算被分列出去, 也得是燕云十六州人民公投的结果, 否则就是反民主的.

国家
R*I
发帖数: 1840
47
来自主题: Military版 - 华为进军北美了,纽约时报文章
Chinese Telecom Giant in Push for U.S. Market
By JOHN MARKOFF and DAVID BARBOZA
SANTA CLARA, Calif. — This spring, an executive from a Chinese
telecommunications equipment company made an intriguing job offer to a
Silicon Valley software engineer. The Chinese company, Huawei Technologies,
wanted to get into the booming market for Internet-based computing, and it
had just moved its United States research headquarters here to capture some
of the best local talent.
“How many engineers would you lik... 阅读全帖
a********6
发帖数: 14468
48
【 以下文字转载自 shopping 讨论区 】
发信人: quantcook (quantcook), 信区: shopping
标 题: 终于,终于对我们留学生下手了
发信站: BBS 未名空间站 (Sun Nov 7 15:32:12 2010, 美东)
分享
来源: 程禹 Dummy-ass的日志
终于,终于对我们留学生下手了。。。
出门在外都不容易,中国人在国外本来就受别人的歧视和不平等的待遇,好不容易,想
回趟家,看看父母,看看亲人吧,哪能空手回去??带点小礼物掩盖下在国外的屈辱和
艰辛的时候,嗳~国家在这个时候想到了你~他挺了你~让你回家的时候,留下点痛并快
乐着的回忆,真亲哈~!!
利用调整税率的方法来宏观调控,是每个国家对经济调控的重要手段,但天朝,记住咯
,那是宏观!他的意思是一个整体,一个社会!在你出台这项税收法案的时候,你是否
想过,你针对的是一群在国外正需要你保护的弱势群体?
是个留学生,都知道,没什么不能没电脑,本来国外就寂寞,电脑是联系亲戚和朋友,
劈腿,上破鞋网的重要工具,你天朝非要征那1000元的税。还好!!你没收软体税,要
不电脑里的毛片是删是不... 阅读全帖
L*********d
发帖数: 7037
49
来自主题: Military版 - 看一看美国是如何羞辱中国的
You dummy. The joke was on Obama. "Hu" was short of saying "kiss my ass"
three times, because of asian's indirect characteristics.
a****1
发帖数: 175
50
来自主题: Military版 - 老将啥时候造反啊?
dummy,
they are doing it right now.
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)