由买买提看人间百态

topics

全部话题 - 话题: dummie
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
s******n
发帖数: 3946
1
来自主题: JobHunting版 - 有个SB interviewer和我说++i比i++好
the O0 code is exactly the same, except that post operator++()(int dummy)
has an extra dummy parameter which is required by c++ to identify the
difference of prefix and postfix.
2nd, even I change the Test& operator++() into Test operator++(), it still generates the same code.
printf("%d \n", 10+ (abc++).value);
sub r3, fp, #8
mov r0, r3
mov r1, #0 --> the dummy parameter of postfix
bl _ZN4TestppEi
mov r3, r0
ldr r3, [r3, #0... 阅读全帖
b*******7
发帖数: 907
2
来自主题: JobHunting版 - 几个C语言的题目
1. what's the output? why?
#include
#include
int main()
{
while(1)
{
fprintf(stdout,"hello-std-out");
fprintf(stderr,"hello-std-err");
sleep(1);
}
return 0;
}
2. what's the output?
#include
int main()
{
float a = 12.5;
printf("%d\n", a);
printf("%d\n", (int)a);
printf("%d\n", *(int *)&a);
return 0;
}
3. can it be built? if yes, what's the result?
file1.c:
int arr[80];
file2.c:
extern int *arr;
int main(... 阅读全帖
j********r
发帖数: 25
3
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode *partition(ListNode *head, int x) {
ListNode dummy(0);
ListNode dummy2(0);
ListNode *p = &dummy;
ListNode *pp = &dummy2;
while(head) {
if (head->val < x) {
p->next = head;
p = p->next;
}
else {
... 阅读全帖
s*********9
发帖数: 53
4
public class Solution {
public ListNode insertionSortList(ListNode head) {
// IMPORTANT: Please reset any member data you declared, as
// the same Solution instance will be reused for each test case.
ListNode dummy = new ListNode(0);

while(head!=null){
ListNode tmp = head;
ListNode pre = dummy;
while(pre.next!=null && pre.next.val < tmp.val){
pre = pre.next;
}
head = head.next;... 阅读全帖
f**********3
发帖数: 295
5
来自主题: JobHunting版 - leetcode上的Sort List那道题
public class Solution {
public ListNode sortList(ListNode head) {
if (head == null || head.next == null) return head;
ListNode tail = head.next;
while (tail.next != null) {tail = tail.next;}
HeadTail ret = sort(head, tail);
return ret.head;
}

class HeadTail {
ListNode head;
ListNode tail;
public HeadTail(ListNode head, ListNode tail) {
this.head = head;
this.tail = tail;
}
}

... 阅读全帖
d********e
发帖数: 239
6
来自主题: JobHunting版 - 请教iterative merge sort list的代码
ListNode *sortList(ListNode *head) {
// IMPORTANT: Please reset any member data you declared, as
// the same Solution instance will be reused for each test case.
if(head == NULL || head->next == NULL) {
return head;
}

ListNode* mid = head;
ListNode* end = head;
while(end->next){
end = end->next;
if (end->next == NULL)
break;
end = end->next;
mid = mid->next;... 阅读全帖
l*****a
发帖数: 14598
7
来自主题: JobHunting版 - 被VMWARE鄙视了(面经并求comment)
两年没面试了,想出来找找面试的感觉然后冲击一下版上公认的那些dream company,没
想到一出来就遭受当头一棒。
一月初的时候在linkedin上收到V公司recruiter的来信,说是在多伦多搞一个event,问
我有没有兴趣。
于是先做了一个online test,本来说还要有一个phone screen的,正安排的过程中一开
始联系我的猎头说直接来吧
这是2月中旬了,接下来的5-6周忙着手头的一个小project,业余时间大多给公司+网络了
,没什么心思准备。
3月21日开始,项目没什么问题了,开始刷了两周的leetcode,别的几乎什么也没看就匆
忙上阵了,本来只希望
积累点interview经验,为其他公司面试做准备。。。谁成想,两轮就被踢出来了。。。
旅程就不顺利,12点从家出来最后11点才进旅馆,第二天7:30就开场。
先是原定直飞的flight被cancel,然后弄了一个1 stop的,前后两段都分别延误了不少
时间
时间不定结果都没来得及吃晚饭。9点到多伦多,租车花了半天,冒着大雨开了几十公
里,
11点进旅馆屋里连水都没有,又饿又累就睡了
online tes... 阅读全帖
a***e
发帖数: 413
8
这些题看着容易,老是写不对或者代码很冗长,有大牛们指点一下如何提高么?
呜呜,不知道哪年哪月才能刷完一遍,有同学互勉一下么?
比如
Given a linked list and a value x, partition it such that all nodes less
than x come before nodes greater than or equal to x.
You should preserve the original relative order of the nodes in each of the
two partitions.
For example,
Given 1->4->3->2->5->2 and x = 3,
return 1->2->2->4->3->5.
我的
Runtime Error

Last executed input:
{1}, 0
ListNode *partition(ListNode *head, int x) {
... 阅读全帖
a***e
发帖数: 413
9
多谢各位,但现在试着在纸上跑程序,但有些就是搞不清哪里错了,比如这个
Copy List with Random Pointer
􀫭􀶍
A linked list is given such that each node contains an additional random
pointer which could point to
any node in the list or null.
Return a deep copy of the list.
􀙳􀼅
我看了idea,自己写了如下程序,但就是
Submission Result: Runtime Error
Last executed input:
{-1,#}
看了半天,试着一步一步走进去,还是不知道哪里错了,打算在VS里面debug一下看。
觉得和能通过的答案没有多少区别啊。。。。。。。。
My wrong answer.
/**
* Definition for sin... 阅读全帖
a***e
发帖数: 413
10
多谢各位,但现在试着在纸上跑程序,但有些就是搞不清哪里错了,比如这个
Copy List with Random Pointer
􀫭􀶍
A linked list is given such that each node contains an additional random
pointer which could point to
any node in the list or null.
Return a deep copy of the list.
􀙳􀼅
我看了idea,自己写了如下程序,但就是
Submission Result: Runtime Error
Last executed input:
{-1,#}
看了半天,试着一步一步走进去,还是不知道哪里错了,打算在VS里面debug一下看。
觉得和能通过的答案没有多少区别啊。。。。。。。。
My wrong answer.
/**
* Definition for sin... 阅读全帖
g******d
发帖数: 152
11
来自主题: JobHunting版 - 帮忙看看怎么做这道G的题目
写一个迭代的。改top to bottom dp很难
class Node(object):
def __init__(self, v):
self.v = v
self.n = None
def dfs(p, s):
if s == 3:
return max(p.v, p.n.v, p.n.n.v)
max_v = 0
for i in range(s):
p1, p2, p3 = p.n, p.n.n, p.n.n.n
p.n = p3.n
r = p2.v + dfs(p, s-3)
max_v = max(max_v, r)
p.n = p1
p = p.n
return max_v
a = [5, 1, 2, 6, 3, 4, 0, 0, 7]
dummy = Node(-1)
head = dummy
for num in a:
head.n = Node(num)
head... 阅读全帖
o*o
发帖数: 5155
12
来自主题: PennySaver版 - 有人买了Staples的FAR的纸吗?
看来是dummy sku编码错了,纸的sku是122408,但dummy sku对应的item是122048。

Dummy
Y
rebate
d***s
发帖数: 797
13
Stock Investing For Dummies
Paul Mladjenovic (Author)
好书,简单易学,初学者入门书
Stock Investing For Dummies,includes information on stock investing in both
bear and bull markets; unique investment segments; stock investing for
different types of situations; and examples straight from the real world of
stock investing as they have occurred in the past three years.
http://www.amazon.com/Stock-Investing-Dummies-Paul-Mladjenovic/dp/0470401141/ref=sr_1_2?ie=UTF8&s=books&qid=1282365616&sr=8-2
x*********n
发帖数: 28013
14
来自主题: Stock版 - 【炒股书籍】精华整理
###FA 经典
The Intelligent Investor
Security Analysis
###TA 经典
日本蜡烛图
庄家克星 < #credit to vegecat (菜猫子~~)
For FA and long term investment:
1. Ben Graham, The Intelligent Investor (a classic book, a must-read no
matter
you're a long term investor or a short term trader)
2. Ben Graham et al., Security Analysis (very thick)
3. Ben Graham et al., The Interpretation of Financial Statements
4. Robert G. Hagstrom, The Warren Buffett Way
5. Peter Lynch, One up on Wall Stree... 阅读全帖
c********e
发帖数: 72
15
来自主题: Singapore版 - 草地生日歌会(蛋糕) (转载)
【 以下文字转载自 Utopia 俱乐部 】
发信人: cinchonine (小鳗), 信区: Utopia
标 题: 草地生日歌会(蛋糕)
发信站: BBS 未名空间站 (Mon Apr 11 04:48:34 2011, 美东)
Grace和Joy是两个聪明漂亮可爱的姐妹花,巧的是,两姐妹相差5岁,却是同一天生日
。姐姐Grace属鸡,妹妹Joy属虎。
半个多月前,姐妹俩的好爸爸跟我说要给她们定个蛋糕,把姐妹俩的属相、以及兔年体
现出来,要求卡通式的蛋糕。想了半天,我的能力还是只能做翻糖,虽然在新加坡作翻
糖蛋糕是件很烦恼的事情,没办法,技能有限。
手比较笨,前前后后忙了一周,每天都要到半夜以后。
小鸡的模特,是Chick Little。模特是个男小鸡,寿星是小女孩,就改成粉色点缀小白
花的公主裙;姿势很有动感像在唱歌,就用现成的巧克力棒做话筒柱,做了个话筒接在
上面。
光小鸡的造型就折腾了一个周日,室友出门的时候说:“在家好好做鸡~~”结果果然整
整一天在家就忙着做小鸡了,囧!
小老虎的模特则是传统的小布袋巧虎玩偶,是室友帮忙做的。小虎妹妹还小,就给她一
个小奶瓶用。
小兔子... 阅读全帖
f********t
发帖数: 6999
16
来自主题: SanFrancisco版 - 被VMWARE鄙视了(面经并求comment) (转载)
【 以下文字转载自 JobHunting 讨论区 】
发信人: lolhaha (长期骑驴,一直找马), 信区: JobHunting
标 题: 被VMWARE鄙视了(面经并求comment)
发信站: BBS 未名空间站 (Tue Apr 8 21:02:44 2014, 美东)
两年没面试了,想出来找找面试的感觉然后冲击一下版上公认的那些dream company,没
想到一出来就遭受当头一棒。
一月初的时候在linkedin上收到V公司recruiter的来信,说是在多伦多搞一个event,问
我有没有兴趣。
于是先做了一个online test,本来说还要有一个phone screen的,正安排的过程中一开
始联系我的猎头说直接来吧
这是2月中旬了,接下来的5-6周忙着手头的一个小project,业余时间大多给公司+网络了
,没什么心思准备。
3月21日开始,项目没什么问题了,开始刷了两周的leetcode,别的几乎什么也没看就匆
忙上阵了,本来只希望
积累点interview经验,为其他公司面试做准备。。。谁成想,两轮就被踢出来了。。。
旅程就不顺利,12点从家出来最后1... 阅读全帖
b***n
发帖数: 13455
17
来自主题: Bridge版 - Dealer problem
So far, I'd guess LHO holds CK, and RHO holds DK, and SA,SQ split. I'd play S
from the dummy to K in my hand. If SA is in RHO's hand, I will make the deal
easily. If my SK falls to SA of LHO, he has only two options: 1. return S to
SQ of RHO. Then if RHO returns a D, dummy Q. If DK is in LHO, no way to make
it. If not, DQ will take this one, and dummy's SJ/CA will take care of the
rest. 2. return D, also easy for the the dealer.
g********d
发帖数: 89
18
来自主题: Bridge版 - watering 2
NOT a double dummy.
if you play heart, East win 2nd round, and return a dia, you play low from
dummy, west dia K drops
BTW, generally speaking, what is the difference if the question is for double
dummy or not?
b***y
发帖数: 2804
19
来自主题: Bridge版 - a rare thing
What do you mean "still any way"? The contract is virtually cold now. You
can over-ruff and play a club, hoping that LHO shows out, in which case you can make an overtrick. If LHO follows, you ruff in dummy (club should be 3-3), finesse spades, cash SA, then club (dummy pitches heart). RHO can ruff this, but has to give you DK. Make only 2.
Actually if LHO follows club, you can even try a simpler line: pitch H on the club, then just SA and SQ. RHO gets SK, but that's it.
The point is, once you p... 阅读全帖
i****e
发帖数: 642
20
来自主题: Bridge版 - 【每周一题】第十墩牌
Let me give it a try. Win lead, ruff 3rd round of club. Clear trumps.
Reach the following situation.
KT3
-
AT5
-


J43

If both opps follow on 3rd C. We now play S6, cover whatever west plays.
East is endplayed. East could cash last C if he has it (dummy discard
D), and then has to return S or D, which gives 10th trick.
If west has 5 C, east will be endplayed after we play S. If east has 5
C, we play C8 (dummy discards S) to throw into him. He can cash one
more club and we discard S6 from ha... 阅读全帖
b***y
发帖数: 2804
21
来自主题: Bridge版 - 【每周一题】第八墩牌
Well, on CA and CJ, west followed C6 and C5. On 3rd club, dummy throws CQ
under west's CK. West could cash C10 and C8 (there is no higher club in
dummy than those two), but then has to play diamond 86 into declarer's jaw
97.
Of course, had west unblocked C8 earlier, declarer would have discarded C7
from dummy. This declarer is counting. :-)
牌打完之后,明手对结果满意,但是对于庄家的叫牌颇有微词:你这个2NT有些一意孤
行吧?庄家回答:是的,但是我自己一手牌就拿了八墩!(明手未获任何赢墩)
i****e
发帖数: 642
22
来自主题: Bridge版 - lead problem
I like C9 lead. Cx lead may work if declarer holds C singleton. For example,
if dummy has 8x, and partner has C7, he may still get it.
At this auction, if someone has singleton, it is more likely the dummy.
At the table, the lead was C3. Dummy's singleton C6 won the trick. He wanted
to be the hero, but he found the only lead which gives away the contract.
p******e
发帖数: 1151
23
来自主题: Bridge版 - 寻找一个牌例,包子酬谢
maybe this example would work for you: it could happen when you need to
avoid a squeeze.
Txx
KJxx
xx
KJxx
x xxxx
T9x Qxx
KQJTxx xx
T9x Qxxx
AKQJx
Axx
Axx
Ax
You are East. South is declarer in small slam in spades after West preempts
in diamonds (and showing 0-7 points in your system, just for the sake of
this problem).
West leads the DK which declarer ducks a... 阅读全帖
D*******0
发帖数: 2523
24
来自主题: Bridge版 - Declare this 4S
First, it's 梅花2-0分布 AND Spade J has to be offside.
2nd, "可能仅仅是想打断庄家可能的桥路".
If Spade is 3-2, clearly dummy has a Spade Q entry, it looks like the
natural way to cut entry is to force dummy to ruff a diamond or heart or
some kind of trump promotion.
3rd, the defense has to take 2 hearts and ended on the side with two clubs.
And it probably has to be on the left side - I can't imagine RHO return a
club to dummy.
p***r
发帖数: 20570
25
来自主题: Bridge版 - 概率打法
As I said, this assumption is just invalid because I may give you a ruff-
sluff with no C honors if I know you'll always play CA in this situation.
You just can't assume opps will always make plays that cost no double dummy
tricks because bridge is never a double dummy game. If you never give any "
double dummy tricks", you are very easy to play against and this hand is a
good example.
Bridge players rarely learn game theories, which are the key concepts
for Texas holdem players...

give
D******g
发帖数: 2717
26
来自主题: GunsAndGears版 - 买枪

那个装子弹上膛,击发是可以用dummy弹来练的,总比dry fire好。不过那个dummy弹可
不便宜。
还有,dummy shell挺短的,有的shotgun可能不让你击发。
a*****e
发帖数: 1700
27
来自主题: WmGame版 - 看来玩 sgz 的不多
我认为 sgz 目前还太过于政治化了,削弱了娱乐性。
喜欢政治的人在这里会如鱼得水,得民意者得天下,其实是凭借
政治关系打压反对派,拉拢中间派,最后定能一统天下。这点和
现实出奇的接近。bmouse 说的 dummy 问题,其实也是个政治问
题,你站对阵营了,dummy 就为你所用,干活什么的巨方便。让
你弃之不用,还会觉得很可惜吧... 反过来讲,对与新手,就很
难适应这个环境,到不是游戏本身,而是这种说不清道不明的政
治环境。这也是为什么在正式开站之初,sgz 很是红火了一把,
因为那时候玩家相对的竞争是同个出发点,后来沉淀下来一些个
老骨头,可以和 dummy 一起左右局势的时候,新手就受不了了。
不管怎么讲,没有玩过 sgz 的人,很难有那种国家兴旺匹夫有责
的体验,泛政治话的东西,在一定的时候,也相当有凝聚力。sgz
里面的竞争是非常残酷的,成王败寇,败的时候真的是无力回天
的感觉,这个游戏对自信心打击太大,也是很多人没有能够持续
玩下去的原因。
s****G
发帖数: 31
28
I always use a dummy to stand when my main ID is roboting, when my main id
gets the message that the container is empty, then give wineskin to dummy,
and set a trigger for you dummy, when your main id gives him wineskin, go to a
place where can fill skin, fill skin, come back, give skin to main ID
C***H
发帖数: 508
29
来自主题: Joke版 - 说起做题
商量的时候定好:一个开关作为dummy,一个作为真的开关,23个人推选一个老大。
轮到老大的时候,如果真开关是开着的,就把真开关从开换到关,计数加1。否则把
dummy动一下。
轮到其他人的时候如果第一次或第二次碰到真开关是关,就把它切换到开,否则就动一
下dummy。
当老大数到44的时候就知道所有人都去过了
b******e
发帖数: 739
30
来自主题: Programming版 - 请教一个SAS Macro问题。谢谢 (转载)
【 以下文字转载自 Statistics 讨论区 】
发信人: badapple (badapple), 信区: Statistics
标 题: 请教一个SAS Macro问题。谢谢
发信站: BBS 未名空间站 (Sun Oct 5 20:28:28 2008)
我现在有100个variable,
这些variable都有missing value.
我想给每个variable生成一个dummy variable, (if missing then dummy=1, else
dummy=0)
怎么才能把这100个variable自动都搞定?
谢谢
s******n
发帖数: 3946
31
【 以下文字转载自 JobHunting 讨论区 】
发信人: swanswan (swan), 信区: JobHunting
标 题: 有个SB interviewer和我说++i比i++好
发信站: BBS 未名空间站 (Thu Mar 22 16:09:09 2012, 美东)
他的意思是假设是operator重载
++i先做++再放在stack上,i++则先复制一份copy到stack上再做++,多了一份复制(假
设编译无优化)
大家看有道理吗?
I did a real test on arm compiler turn off optimization:
the O0 code is exactly the same, except that post operator++()(int dummy)
has an extra dummy parameter which is required by c++ to identify the
difference of prefix and postfix.
2nd, even I change the Test& ope... 阅读全帖
y***j
发帖数: 11235
32
有这本Beginning Programming All-In-One Desk Reference For Dummies
里面讲了一点点数据结构和算法。以为你说的这个。
dummies系列我只看过
Potty Training For Dummies
完全没用。。。
y***j
发帖数: 11235
33
有这本Beginning Programming All-In-One Desk Reference For Dummies
里面讲了一点点数据结构和算法。以为你说的这个。
dummies系列我只看过
Potty Training For Dummies
完全没用。。。
m*********a
发帖数: 3299
34
来自主题: Programming版 - 今天给c++震惊了
还有这个知道了。 code::block 还没有fix这个bug
这是为啥我都晕了,在code::block都是可以assignable lvalue的
但是标准应该是一个是lvalue一个是rvalue
MyClass & f()//return lvalue
MyClass f()//return rvalue
Assignment to rvalues
Visual Studio 2012 didn’t forbid assignment to rvalues as required by the
standard:
struct Dummy
{
int _x;
};
Dummy get_dummy()
{
Dummy d = { 10 };
return d;
}
get_dummy()._x = 20;
b******e
发帖数: 739
35
来自主题: Statistics版 - 请教一个SAS Macro问题。谢谢
我现在有100个variable,
这些variable都有missing value.
我想给每个variable生成一个dummy variable, (if missing then dummy=1, else
dummy=0)
怎么才能把这100个variable自动都搞定?
谢谢
R******d
发帖数: 1436
36
来自主题: Statistics版 - 如何用SAS找几个单词?
这个比较婉转,不过可以用
data _null_;
length a b $20;
gt_re = prxparse('s/apple|orange|grape//');
a="xxxxorangeeeee";
b=a;
call prxchange(gt_re, -1, b);
if length(b) put a= b= dummy=;
run;
p******x
发帖数: 441
37
来自主题: Statistics版 - 求apple statistician面经

不好意思没说明白.Q3比解释“dummy variable trap”要复杂一些.第二个问题是在我
提了要注意“dummy variable trap”的问题以后再问的。 举个例子,就是现在研究“
体重”Y与 “性别”S,“身高”H 的关系。面试官的意思是问为什么不先对女性拟合
一个 y=b0+b1*H,然后再对男性拟合一个y=a0+a1*H;而是用dummy variable S做y=c0+
c1*S+c2*H.
u*******r
发帖数: 2855
38
来自主题: Statistics版 - 怎样剔除某个factor的作用?
主要是怎么建模的问题
首先你要考虑如何定义时间和空间的类别,比如
1. 空间是fixed effect
则要考虑它是continuous variable or categorical variable
如果是categorical variable,你可以采用上面某位建议的,建立一组dummy variable,
A, B,..., X
y(space=A)=K1*time+A+ε1
y(space=B)=K1*time+B+ε2
...
y(space=X)=K1*time+X+ε3
三种方式处理dummy variable:
1)sum(A+B+...+X)=0;
2)A=0
3)不加限制,但是只有dummy variable之间的相对大小有意义
当然你也可以加入二次方,比如y=K1*time+K2*time^2
如果你把空间定义为continuous variable,那么
你可以像上面建议的那样只考虑线性:
y=K1*time+K2*space+ε
也可以考虑interaction
y=K1*time+K2*space+K12*time*space+ε
可以考虑更高次方
y=... 阅读全帖
M******n
发帖数: 138
39
Thank you for your contribution.
Please allow me to recommend some books for you and your friends. You can
find them in your local library and I hope they will be helpful and solve
some of your problems if you take the time and effort in reading them.
Success for dummies. by Zig Ziglar.
(for work-life balance, interpersonal skills and pressure management.)
1001ways to reward employees. by Bob Nelson.
Managing for dummies. by Bob Nelson.
(live examples to keep people excited. Management skills)
... 阅读全帖
h******r
发帖数: 31
40
来自主题: DataSciences版 - Project :advertersiment click prediction
建议大家看一下这个帖子:http://www.mitbbs.com/article_t2/DataSciences/2135.html
这种情况其实就是把nominal variable转成许多dummy variables。比如说,variable
城市有三个选择:北京,上海,广州。那我们就需要2个dummy variables。
北京:0/1
上海:0/1
广州就不用了,因为如果北京和上海都是0的话,剩下就是广州了。
对于lz的问题,因为城市很多,就要很多的dummy variables。所以建议用svm,svm不
怕high dimension。或者random forests,因为有自动的tree pruning。classic
logistic regression应该不work的。
s********0
发帖数: 51
41
来自主题: DataSciences版 - 请教大家一个做feature的问题
现在有一个survey,上面要填写一些个人信息比如姓名等,还要填写当前工作title,
公司类型等等,然后根据这个表格做feature,再做machine learning预测这个人会不
会买某产品。一个办法是做很多的dummy variable,比如把title 变成is_manager, is
_ceo等,可问题是这个title很可能有上千种,而且还有很多人填写错误等问题,所以
会有很多的dummy variable做出来,并且大多数都出现得非常少 (比如manager写错成
manger可能只有一个人写错)。dummy variable做出来之后,用glmnet来预测的效果其
实很差,比直接用logistic regression做的还差。请问大家遇到这个问题是怎么做的
呢?
还有一个想法是把title的一些level给合并成一个,比如把manager 和 manger合并成
一个。可是这样的问题如何通过算法来实现呢?
E**********e
发帖数: 1736
42
你要了解smote,你必须去看原作者的文章。 原作者用 value distance metric 来算
noncontinuous variable的距离, 然后跟continuouvariable 以起算距离。 这个距离
是用来选出对应某个样品的最近的几个邻居, 然后算出fake的那个样品,么就是每个
变量都有一个新的值, 然后在用majority vote 来制定这个faked的样品是1还是0.
不需要非得把categorical variable 处理成 dummy varaible。 比如50个州, 你用49
个dummy variable? 不麻烦。 你可以group 一些。 然后用log of odds order them
, 如果可以的话。 要是不能order ,但是还是要放进去, 那这能dummy了。 但是如
果不能order 新的group, 那么这个variable 也就不重要, 或者没有预测力。
里边谈到怎么算categorical 变量的距离, 酵素

dataset
h*****5
发帖数: 561
43
来自主题: CellularPlan版 - Verizon的S9+ BOGO问题
打算从A跳到V,已经开了一条V的线,并且转成了老爷爷unlimited plan,并且有一个
dummy number,想试试V在上班的的地方信号怎样。
看到V现在S9+ BOGO,想知道V的机器是不是都无锁,记得V好像没有lock?另外看到
Costco也在卖,还有额外150 costco GC each device,不知道是不是也是和V直接买一
样?
costco小二说机器是international unlock,domestic lock。不知道小二是不是迫于
压力这么说的,实际上都是unlock的。
我没记错第一个S9是可以在existing line,第二个一定要新线。我只需要一个手机号
码,我能不能用现在已经有点dummy number签第一台手机,然后port我att的号码去
Verizon拿送的手机? 一个月后pay off第一个S9,cancel dummy number?
有点复杂 谢谢各位 另外老爷爷plan还能加三个人 可以PM
s*********8
发帖数: 901
44
来自主题: Military版 - No more? Naziland hides tax for US rich
Switzerland's oldest private bank, Wegelin & Co., had survived three
centuries of upheaval on the continent, including Napoleon's invasion of the
country and two World Wars. But its illustrious history was brought to an
end last month by an unlikely source: a U.S. government desperate to track
down tax evaders.
In early February, in a move that rattled Switzerland's financial industry,
the U.S. Department of Justice indicted Wegelin on charges of helping
wealthy Americans hide $1.2 billion from ... 阅读全帖
p******u
发帖数: 14642
45
转一个squallgzy对三锅导弹实验的品论:
下面纯粹引用:
好多人在问,我来回答一下。印度烈火5的弹头不用找了,原因见内
根据印度媒体的报道:
http://www.thehindu.com/news/national/article3332940.ece
The fireball created by the explosion of the dummy payload was recorded by
cameras onboard the ships.
空中爆炸了,找个屁
////////////////////
反正三哥不属于正常人类
一般来说开头的几次飞行试验是方案考核性试验,首先要考核的就是防热设计是否成功
。不管是硬回收还是软回收,都要捞回来看一看弹头烧蚀情况如何,应该如何改进设计
。第一次不管烧蚀情况,直接爆炸,从来没听说过。爆炸了怎么知道弹头防热是否成功
?匪夷所思。况且弹头不落地,防热考核都不算结束。
解释:
1,就是这么设计的,不管弹头烧蚀如何,先测试一下弹头引控系统。但是根据印度媒
体的报道,这次是dummy warhead,可能就是个配重。兔子当年研制东五的... 阅读全帖
R****a
发帖数: 6858
46
适应没有食物的生活
——华尔街、英国石油、生物-乙醇以及数百万人的死亡
威廉·恩道尔 (《粮食危机:运用粮食武器获取世界霸权》作者*)
李云译
2011年6月29日
我过世的祖父,是一位有挪威血统、强壮的美国农场主后代,后来他成了一位报纸
编辑,在第一次世界大战中成为一位投身政治的人。他常常说:“只要时间许可,人可
以适应相当多的事情,除了死亡……但是如果经常练习的话,人也可以适应死亡。”看
,似乎天意如此, 看起来,我们人类中的绝大部分,就要验证那句谚语了,通过我们
是否能够得到每天的面包这件事情来验证。
食物,是少数几种使人们维持生命的可笑东西之一。我们会理所当然地以为,家门
口的超市会永远卖我们喜欢吃的食物,而且还以合理的、我们能支付得起的价格充足供
应下去。然而,在没有充足事物供应的情况下生存,是未来我们中千万人或者上亿的人
要面对的前景。
从某种意义上讲,这是个真正的悖论。我们这个星球可以为数倍于当今人口的人,提
供营养充足的天然食品。但是,由于过去半个世纪或者说更长时间建立起来的工业化农
业的破坏,食物不足的情况将会出现。
到时候我们的世界要如何面对未来... 阅读全帖
b********n
发帖数: 38600
47
来自主题: Military版 - 亚裔犹太婚姻以成主流
没学过stat。 但还知道dummy不dummy, 可以用logistic regression :)
b********n
发帖数: 38600
48
CNN DUMMY: Should We Take Down Thomas Jefferson Memorials Because He Owned
Slaves?
http://dailysurge.com/2015/06/cnn-dummy-should-we-take-down-tho
c*********d
发帖数: 9770
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)