楼主: Coffecat
跳转到指定楼层
上一主题 下一主题
收起左侧

[统计--就业] CRO/药厂 SAS/Statistical Programmer 职业相关

   
🔗
Trrong 2023-3-23 11:22:38 | 只看该作者
全局:
哈喽 楼主 你好!
我是今年5月毕业,统计专业的,想毕业从事sas programmer的工作,目前拿了sas base 的证,在准备advanced,不知道是否方便交流一下呢?
感谢感谢 🙏 我积分不够 私信不了你呢!
回复

使用道具 举报

🔗
 楼主| Coffecat 2023-3-25 02:51:37 | 只看该作者
全局:
owen633 发表于 2023-3-13 16:28
你好楼主 请问你们公司最近还招人吗?我生统硕士毕业有两年的 non-profit经验 想跳去cro/药厂发展 如果有合 ...
-baidu 1point3acres
可以的,加我V: iambond
回复

使用道具 举报

🔗
 楼主| Coffecat 2023-3-25 02:51:57 | 只看该作者
全局:
Trrong 发表于 2023-3-22 23:22
哈喽 楼主 你好!
我是今年5月毕业,统计专业的,想毕业从事sas programmer的工作,目前拿了sas base 的证 ...

可以的,看上一楼我的V
回复

使用道具 举报

🔗
ansun520 2023-7-2 16:36:07 | 只看该作者
全局:
****1.Input sample demographics data.;
data demog;
label subjid = "Subject Number"
      trt    ="Treatment". 1point3acres.com
          gender ="Gender"
          race   ="Race"
          age    ="Age";
input subjid trt gender race age @@;. 1point3acres
datalines;
101 0 1 3 37 301 0 1 1 70 501 0 1 2 33 601 0 1 1 50 701 1 1 1 60
102 1 2 1 65 302 0 1 2 55 502 1 2 1 44 602 0 2 2 30 702 0 1 1 28
103 1 1 2 32 303 1 1 1 65 503 1 1 1 64 603 1 2 1 33 703 1 1 2 44
104 0 2 1 23 304 0 1 1 45 504 0 1 3 56 604 0 1 1 65 704 0 2 1 66
105 1 1 3 44 305 1 1 1 36 505 1 1 2 73 605 1 2 1 57 705 1 1 2 46
.google  и106 0 2 1 49 306 0 1 2 46 506 0 1 1 46 606 0 1 2 56 706 1 1 1 75
201 1 1 3 35 401 1 2 1 44 507 1 1 2 44 607 1 1 1 67 707 1 1 1 46
202 0 2 1 50 402 0 2 2 77 508 0 2 1 53 608 0 2 2 46 708 0 2 1 55. 1point 3 acres
203 1 1 2 49 403 1 1 1 45 509 0 1 1 45 609 1 2 1 72 709 0 2 2 57
204 0 2 1 60 404 1 1 1 59 510 0 1 3 65 610 0 1 1 29 710 0 1 1 63
205 1 1 3 39 405 0 2 1 49 511 1 2 2 43 611 1 2 1 65 711 1 1 2 61
206 1 2 1 67 406 1 1 2 33 512 1 1 1 39 612 1 1 2 46 712 0 . 1 49
;
run;. check 1point3acres for more.
***2.Create formats needed for table rows.;
proc format;
   value gender
        1= "Male"
                2= "Female";
   value race
        1= "White"
                2= "Black"
        3= "Other";
run;
****3.Duplicate the incoming date set for overall column;
****Calculations so now trt values 0=placebo,1=active and 2=overall; ..
data demog;. Waral dи,
set demog;. .и
output;
trt=2;
output;
run;
****Age statistics programming;
****Get P value from non parametric comparison of age means;
proc npar1way data=demog wilcoxon noprint;
where trt in (0,1);
class trt;
var age;
output out=pvalue wilcoxon;. .и
run;
. check 1point3acres for more.
proc sort data=demog;.1point3acres
by trt;
run;

. From 1point 3acres bbs
***Get age descriptive statistics N, Mean, STD,MIn,and max;
proc univariate data=demog noprint;
by trt;
var age;
output out=age n=_n mean=_mean std=_std min=_min max=_max;
run;

***Format age descriptive statistics for the table;
data age;
set age;. Waral dи,
format n mean sd min max $14.;
drop _n _mean _std _min _max;
n=put(_n,3.);
mean=put(_mean,7.1);
std=put(_std,8.2);
min=put(_min,7.1);
max=put(_max,7.1);
run;

*****Transpose age descriptive statistics into columns;
proc transpose data=age out=age prefix=col;
var n mean std min max;. 1point3acres
id trt;
run;
. From 1point 3acres bbs
****create age first row for the table;
data label;. 1point3acres.com
set pvalue(keep=P2_WIL rename=(P2_WIL=pvalue));
length label $85;.--
label="Age(years)";
run;

***Append age descriptive statistics to age p value row and;
***crete age descriptive statistics row labels.;
data age;
length label $85 co10 co11 co12 $25;
set label age; ..
keep label co10 co11 co12 pvalue;
if _n_ > 1 then
   select;
      when(_NAME_ = 'n')    label = " N";
      when(_NAME_ = 'mean') label = " Mean";
      when(_NAME_ = 'std')  label = " Standard Deviation";.1point3acres
      when(_NAME_ = 'min')  label = " Minimum";
. 1point 3acres       when(_NAME_ = 'max')  label = " Maximum";
      otherwise;. Χ
    end;
run;
求问各位大神,最后一步死活找不到bug,请帮忙看看哪里出问题。谢谢!
回复

使用道具 举报

🔗
ansun520 2023-7-11 06:53:06 | 只看该作者
全局:
求问对于没有经验的人,SDTMIG3.2.pdf这个文档该怎么看?
回复

使用道具 举报

🔗
dagouzi 2024-2-13 02:27:03 | 只看该作者
全局:
求内推 CRO SP
回复

使用道具 举报

🔗
jhunter 2024-5-6 07:20:45 | 只看该作者
全局:
我司正在找senior的统计师,sas programmer. 感兴趣的可以联系我!
回复

使用道具 举报

🔗
Longwood 2024-5-6 23:03:54 | 只看该作者
全局:
求内推, 药厂 CRO
回复

使用道具 举报

全局:
Norwegian 发表于 2021-3-13 21:51
有的时候活太多手下人忙不过来的时候还是会programming的 LZ以后有兴趣我可以refer你来我们药厂哈 我司的 ...

您好来自2024的回复^^请问您现在还可以帮忙refer SP的工作吗~我刚毕业正在找SP的工作但是目前机会不是很多TT
回复

使用道具 举报

🔗
 楼主| Coffecat 2024-6-28 03:12:43 | 只看该作者
全局:
微信用户_0cad044 发表于 2024-5-22 17:38
您好来自2024的回复^^请问您现在还可以帮忙refer SP的工作吗~我刚毕业正在找SP的工作但是目前机会不是很 ...

现在行情不太好,很多公司包括我自己公司都不招NG了。。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册账号
隐私提醒:
  • ☑ 禁止发布广告,拉群,贴个人联系方式:找人请去🔗同学同事飞友,拉群请去🔗拉群结伴,广告请去🔗跳蚤市场,和 🔗租房广告|找室友
  • ☑ 论坛内容在发帖 30 分钟内可以编辑,过后则不能删帖。为防止被骚扰甚至人肉,不要公开留微信等联系方式,如有需求请以论坛私信方式发送。
  • ☑ 干货版块可免费使用 🔗超级匿名:面经(美国面经、中国面经、数科面经、PM面经),抖包袱(美国、中国)和录取汇报、定位选校版
  • ☑ 查阅全站 🔗各种匿名方法

本版积分规则

>
快速回复 返回顶部 返回列表