由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 面试
相关主题
弱弱的问一下关于one-way repeated ANOVAsas question
proc GLM和proc Reg、proc Genmod的比较请教flag问题
请教test two-way ANOVA homogeneity的问题请教sas code问题
请教一sas programmmHow to generate efficacy report for clinical trial
overall mean in sas for several variablesBiostatistics Wanted-Job Openning
SAS help统计分析问题请教, Baozi question!
SAS code 问题[求助]三因素unbalanced的文献数据方差分析
help:data manipulation急问:用什么方法好???
相关话题的讨论汇总
话题: company话题: gz话题: bj话题: hk话题: what
进入Statistics版参与讨论
1 (共1页)
y******6
发帖数: 47
1
我也攒点人品:以下题目一个是从银行(risk analyst)一个是从市场调查公司(
statistician)
1. What is left join. What's the difference between left join and right join.
2. Example: the original data set has the input like:
Company Location Profits
A BJ 15,000
SH 56,000
B GZ 34,555
HK 43,222
etc. You want to manipulate the data like:
Company Location Profits
A BJ 15,000
A SH 56,000
B GZ 34,555
B HK 43,222
How to achieve it in SAS.
3. Why do you use proc GLM instead of proc Anova to perform Anova analysis.
4. Why do you build linear mixed models instead of using linear models.
5. Did you do training set and validation set to test your models? What's
the result. (faint, I don't think neither my supervisor nor my boss has ever
told me to do things like that. Since my primary job is to test the differences)
6. How to interprete coefficient of variation?
s*******r
发帖数: 769
2
thanks for sharing. But these questions seem easy though.

join.

【在 y******6 的大作中提到】
: 我也攒点人品:以下题目一个是从银行(risk analyst)一个是从市场调查公司(
: statistician)
: 1. What is left join. What's the difference between left join and right join.
: 2. Example: the original data set has the input like:
: Company Location Profits
: A BJ 15,000
: SH 56,000
: B GZ 34,555
: HK 43,222
: etc. You want to manipulate the data like:

C******y
发帖数: 2007
3
zan
o**m
发帖数: 828
4
zan bless

join.

【在 y******6 的大作中提到】
: 我也攒点人品:以下题目一个是从银行(risk analyst)一个是从市场调查公司(
: statistician)
: 1. What is left join. What's the difference between left join and right join.
: 2. Example: the original data set has the input like:
: Company Location Profits
: A BJ 15,000
: SH 56,000
: B GZ 34,555
: HK 43,222
: etc. You want to manipulate the data like:

y******6
发帖数: 47
5
Well, I guess the questions are quite simple, indeed. But I failed to answer
number2 while I was interviewed. The banking questions are more related to
the projects I have been involved. But I didn't do a great job in the
presentation part or they need someone who's more experienced.
l**n
发帖数: 131
6
谁来给解答一下第二个问题
l*********s
发帖数: 5409
7
Don't worry. Failing these simple questions is embarrassing, however, they
resemble little practical importance. If you know how pigs work, how pigs
taste, I don't think it really matters if you know that pigs are all called
"swine".

answer
to

【在 y******6 的大作中提到】
: Well, I guess the questions are quite simple, indeed. But I failed to answer
: number2 while I was interviewed. The banking questions are more related to
: the projects I have been involved. But I didn't do a great job in the
: presentation part or they need someone who's more experienced.

k*******a
发帖数: 772
8
试一下,肯定有更好的办法
data a;
input company $ 1-2 city $ profit comma18.;
datalines;
A BJ 15,000
SH 56,000
B GZ 34,555
HK 43,222
;
data a(drop=lagcompany);
set a;
lagcompany=lag(company);
if company=' ' then company=lagcompany;
proc print data=a; run;

【在 l**n 的大作中提到】
: 谁来给解答一下第二个问题
s******r
发帖数: 1524
9
you code only works for lag=2;
retain would work for 2+ missing line data.

【在 k*******a 的大作中提到】
: 试一下,肯定有更好的办法
: data a;
: input company $ 1-2 city $ profit comma18.;
: datalines;
: A BJ 15,000
: SH 56,000
: B GZ 34,555
: HK 43,222
: ;
: data a(drop=lagcompany);

k*******a
发帖数: 772
10
it worked for me with lag just now, but not sure why it is not working, so i
tried retain...
data a;
input company $ 1-2 city $ profit comma18.;
datalines;
A BJ 15,000
JJ 12,335
jr 12,345
BB 12,445
B GZ 34,555
HK 43,222
;
data a(drop=rcompany);
set a;
if company=' ' then company=rcompany;
rcompany=company;
retain rcompany;
proc print data=a; run;

【在 s******r 的大作中提到】
: you code only works for lag=2;
: retain would work for 2+ missing line data.

1 (共1页)
进入Statistics版参与讨论
相关主题
急问:用什么方法好???overall mean in sas for several variables
正态分布,请教!SAS help
问题请教SAS code 问题
问个基本的建MODEL问题help:data manipulation
弱弱的问一下关于one-way repeated ANOVAsas question
proc GLM和proc Reg、proc Genmod的比较请教flag问题
请教test two-way ANOVA homogeneity的问题请教sas code问题
请教一sas programmmHow to generate efficacy report for clinical trial
相关话题的讨论汇总
话题: company话题: gz话题: bj话题: hk话题: what