由买买提看人间百态

topics

全部话题 - 话题: sas
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)
D******6
发帖数: 6211
1
来自主题: ChineseClassics版 - 请教一个SAS读中文数据库的问题 (转载)
【 以下文字转载自 Statistics 讨论区 】
发信人: Doha2006 (花猫), 信区: Statistics
标 题: 请教一个SAS读中文数据库的问题
发信站: BBS 未名空间站 (Sun Feb 21 23:45:37 2010, 美东)
我用SAS读一个中文数据库,字符字段
源文件如下:
id name address
1, 张三,北京市东城区
2,李四,北京市西城区
。。。
。。。
我用的代码如下:
DATA name;
infile 'G:\name.csv' DLM = ',' DSD MISSOVER;
input id $ name $ address $;
读到SAS里的结果如下:
id name address
1 张三 北京市东
2 李四 北京市西
现在出现的问题是,如果address太长或者任何字符字段长过8个都读不进去,读到SAS
里以后,只有4个中文字符,也就是字节长8 。不是说以$这样结尾读数据都是按照有多
长读多长么?还是哪里有什么限制,我没有打开?
谢谢指点!
n****n
发帖数: 492
2
来自主题: Database版 - SAS tutorial?
I started with this one:
http://www.ats.ucla.edu/stat/sas/
Very simple stuff, but kinda helpful for beginners.
There is a very good listserv SAS-L you can subscribe. Lots of
SAS gurus are there answering questions.
And go to this place for more stuff about SAS
http://www.sconsig.com/
HTH.
g*****e
发帖数: 6
3
来自主题: Database版 - Help: SAS
Somebody ask me something about SAS which I know nothing about. Anybody can
help me? Here is the quote of his question:
when I am doing my data analysis, I use SAS. I'm simply running General
Linear
Models and Logistic regressions. A procedural-based package such as SAS is
quite up to the task. But the problem is that I've been running up against
some limitations of SAS (e.g., the ability to write estimated parameters to
a separate database). I'm wondering if I should move to a more general
a****2
发帖数: 85
4
来自主题: Hardware版 - No SAS dock station in this world
I am trying to buy a SAS dock statiion, but after searching around, found
almost every dock stations on the internet is for SATA, am I wrong that SAS
and SATA are compatible in terms of the interface?
https://www.google.com/#q=SAS+docking+station
I am trying to find a dock station such that I can insert the SAS drive from
the server and clean up the hard drive before using for other purpose.
b*x
发帖数: 1
5
来自主题: Software版 - Re: SAS plot problem
这个问题应该是你系统的中文支持系统引起的.
解决方案:
1: 改变SAS的初始化文件 #:\Program Files\SAS Institute\SAS\V8\Sasv8.cfg
在这个文件的头十几行你应该能找到如下字样的设置语句,把他们改成我这样的:
把 -FORMCHAR "|----|+|---+=|-/\<>*" 从注释状态改为激活状态,把
-FORMCHAR "們剠唶垑妺=|-/\<>*从激活状态改为注释状态,我这里的设置应该
是你改过以后的样子.
/* This is the ANSI character set (for SAS Monospace font and ANSI Sasfont) */
/* -FORMCHAR "們剠唶垑妺=|-/\<>*" */
/* This is the ANSI character set */
-FORMCHAR "|----|+|---+=|-/\<>*"
2:如果你没有权
u******m
发帖数: 189
6
来自主题: Actuary版 - SAS programmer 医药行业内推
Job description:
Entry Level SAS Statistic Programmer position.
Develop complex SAS programs to manage, validate & interpret clinical trials
data.
Performa analysis datasets & produce reports
Write, review documents.
Requirement:
Bachelor/Master/PHD in Statistics, Mathematics, Computer science or other
quantitative or technology related majors.
Proficiency with advanced SAS STAT/MACRO/SQL Language.
Willing to be relocated to NJ area temporary for training if without any
industry experience.
Wit... 阅读全帖
d******s
发帖数: 103
7
来自主题: Economics版 - SAS training in Princeton
Hello,
My name is David. I am a SAS certified Advanced programmer and have been
working as Sr. Clinical SAS Programmer for years mostly in giant
pharmaceutical companies such as Novartis, Allergan, Bristol-Myers Squibb,
etc. and other Clinical Research Organizations. Through my career, I have
been covered more than 100 clinical studies from Phase I to Phase IV.
I could provide hands on SAS programmings for folks who wants to be a prof.
clinical SAS programmer in pharmaceutical industry.
Please r... 阅读全帖
d******s
发帖数: 103
8
来自主题: Economics版 - SAS training in Princeton
Hello,
My name is David. I am a SAS certified Advanced programmer and have been
working as Sr. Clinical SAS Programmer for years mostly in giant
pharmaceutical companies such as Novartis, Allergan, Bristol-Myers Squibb,
etc. and other Clinical Research Organizations. Through my career, I have
been covered more than 100 clinical studies from Phase I to Phase IV.
I could provide hands on SAS programmings for folks who wants to be a
prof. clinical SAS programmer in pharmaceutical industry.
Please r... 阅读全帖
u******m
发帖数: 189
9
Job description:
Entry Level SAS Statistic Programmer position.
Develop complex SAS programs to manage, validate & interpret clinical trials
data.
Performa analysis datasets & produce reports
Write, review documents.
Requirement:
Bachelor/Master/PHD in Statistics, Mathematics, Computer science or other
quantitative or technology related majors.
Proficiency with advanced SAS STAT/MACRO/SQL Language.
Willing to be relocated to NJ area temporary for training if without any
industry experience.
Wit... 阅读全帖
r*******a
发帖数: 268
10
来自主题: Mathematics版 - 求助:SAS使用问题(读数据)
要用SAS做线性回归。比如说,现在有两个变量,Y和X,要用X表达Y。
现在X,Y都是140天的数据,每天有1500个公司给出数据。
所以有两个excel文件,140列,1500行。
我们要做的是对于每天,都给出相应的Y和X的回归方程。
然后我们实际上应该有140个方程。
现在最不知道怎么办的是怎么写SAS的语句,让它一次把这140次回归一下做完。。。。
问了统计系同学也没搞清楚。请大牛指点一下,如果写出全部语句比较麻烦,请指点一
下应该用什么思路或者什么函数之类的。。。
另外,还想问一下如何控制SAS输出结果的格式?因为我们还想对求出的140个回归方程
做分析。而SAS一般输出结果的格式显然不适合做进一步分析..
如果用其他统计软件方便做上面的操作,也请指教指教。
谢谢!:)
u******m
发帖数: 189
11
Job description:
Entry Level SAS Statistic Programmer position.
Develop complex SAS programs to manage, validate & interpret clinical trials
data.
Performa analysis datasets & produce reports
Write, review documents.
Requirement:
Bachelor/Master/PHD in Statistics, Mathematics, Computer science or other
quantitative or technology related majors.
Proficiency with advanced SAS STAT/MACRO/SQL Language.
Willing to be relocated to NJ area temporary for training if without any
industry experience.
Wit... 阅读全帖
d******s
发帖数: 103
12
来自主题: Pharmacy版 - SAS training in Princeton
Hello,
My name is David. I am a SAS certified Advanced programmer and have been
working as Sr. Clinical SAS Programmer for years mostly in giant
pharmaceutical companies such as Novartis, Allergan, Bristol-Myers Squibb,
etc. and other Clinical Research Organizations. Through my career, I have
been covered more than 100 clinical studies from Phase I to Phase IV.
I could provide hands on SAS programmings for folks who wants to be a prof.
clinical SAS programmer in pharmaceutical industry.
Please r... 阅读全帖
d******s
发帖数: 103
13
来自主题: Pharmacy版 - SAS training in Princeton
Hello,
My name is David. I am a SAS certified Advanced programmer and have been
working as Sr. Clinical SAS Programmer for years mostly in giant
pharmaceutical companies such as Novartis, Allergan, Bristol-Myers Squibb,
etc. and other Clinical Research Organizations. Through my career, I have
been covered more than 100 clinical studies from Phase I to Phase IV.
I could provide hands on SAS programmings for folks who wants to be a
prof. clinical SAS programmer in pharmaceutical industry.
Please r... 阅读全帖
A***A
发帖数: 98
14
来自主题: Psychology版 - SPSS vs SAS
Fortunately universities usually can make arrangements with SAS and SPSS to
get a site licensed product on compus. Then the cost of owning SAS will be
much lower.
It's a pain learning how to use SAS.
It's quite a learning curve.
But I imagine that a beginner would have spent most of his/her time on
learning the tricks of using DATA STEP, which, by the way, is the ugliest
programming language I've used. The SAS/STAT procedures are okay, as long as
you know the details of the stats that you're
c*****i
发帖数: 51
15
来自主题: Statistics版 - [转载] Re: SAS plot problem
【 以下文字转载自 Software 讨论区 】
【 原文由 bjx 所发表 】
这个问题应该是你系统的中文支持系统引起的.
解决方案:
1: 改变SAS的初始化文件 #:\Program Files\SAS Institute\SAS\V8\Sasv8.cfg
在这个文件的头十几行你应该能找到如下字样的设置语句,把他们改成我这样的:
把 -FORMCHAR "|----|+|---+=|-/\<>*" 从注释状态改为激活状态,把
-FORMCHAR "們剠唶垑妺=|-/\<>*从激活状态改为注释状态,我这里的设置应该
是你改过以后的样子.
/* This is the ANSI character set (for SAS Monospace font and ANSI Sasfont) */
/* -FORMCHAR "們剠唶垑妺=|-/\<>*" */
/* This is the ANSI character set */
-FORMCHAR "|----|+|---+=|-/\
f*******n
发帖数: 70
16
来自主题: Statistics版 - SAS下载安装完全教程
就是我给的那个连接,不少人说装不了,俺负责到底,刚刚自己去下载完了
那个SAS文件,已经在roommate机器上装上了,Win XP home,没任何问题,run
了几个proc, GLM, ARIMA, 都OK. 下面就安装扫一下盲.
连接:
http://stat.ustc.edu.cn/data/software/sas8/SAS8.BIN
科大的ftp,还能放多久不知道,快点下吧.
btw,下面这个网站还有别的东东,能不能下不知道,反正这个SAS就是
在这儿找到的.
http://text88.myrice.com/downloads/stata/
安装步骤:
下完了是个.bin文件,可以刻盘或者用winiso解压后直接从硬盘上安装.
安装中途我碰到一个error,israel什么文件拷不了,skip掉.会重启一次
安装最后要initiate,找那个SETINIT文件,应该在V8/core/sasinst下面.
装完了把源盘(.bin文件)里的那个crack目录下的东西拷到V8/目录下覆盖掉.
然后我运行了一下,run SAS/BASE 没问题, 但别的package象SAS/
b******n
发帖数: 54
17
来自主题: Statistics版 - Re: SAS certification
depends which level you talking about, the best reference is www.sas.com,
IMHO, if company pay you training, take some onsite training might be good,
otherwise, online manual is good enough, you can find following link from SAS
website and much more
http://support.sas.com/certify/prep.html
http://support.sas.com/certify/exams.html

useful
jl
发帖数: 398
18
来自主题: Statistics版 - SAS TOPICS 网站Link
Resources to help you learn and use SAS
http://www.ats.ucla.edu/stat/sas/
SAS Topics
Programming
http://www.ats.ucla.edu/stat/sas/topics/programming.htm
p********a
发帖数: 5352
19
来自主题: Statistics版 - SAS考证基础知识
专门替不愿考古的懒人们预备的。。
考证网站:http://support.sas.com/certify/
注册:www.prometric.com
准备材料:SAS Self-Paced e-Learning
BASE EXAM: http://tutor.vicp.cc/N8er39YTm0/60477/index.htm
ADV EXAM: http://tutor.vicp.cc/N8er39YTm0/60477/index.htm Practice Exam: 可以自己购买或找人借,偶尔会有Free的link
Instructor Based PROG1-PROG3也很好
考试介绍:BASE & ADV http://support.sas.com/certify/creds/credprog.html
证书有效期:Base 2年, Advanced 3年
FAQ
1:考试简单吗,需要多少时间准备?
应该算很简单的。答对66%就PASS。如果学过一些SAS课程,建议用2礼拜准备BASE EX
p********a
发帖数: 5352
20
☆─────────────────────────────────────☆
beehappy (快乐蜜蜂) 于 (Fri Dec 24 00:57:03 2004) 提到:
把LITTLE SAS BOOK精读几遍,吃透了,是不是就行了?SAS MACRO很重要吗?请大侠指点.
☆─────────────────────────────────────☆
biokiti (飞来大肥鸭) 于 (Mon Jan 3 16:34:06 2005) 提到:

SAS Macro is extensively used in industry where SAS is used.
☆─────────────────────────────────────☆
gder (大誓庄严) 于 (Tue Jan 4 08:48:55 2005) 提到:
DATA STEP是必须要搞熟的,除了读入文件DO LOOP什么的,
retain, first. last.; date format,这些都不在话下
MACRO很重要,很重要很重要;但MACRO学起来是很容易的
p********a
发帖数: 5352
21
☆─────────────────────────────────────☆
purelens (NR) 于 (Thu Feb 1 21:04:59 2007) 提到:
本人 SAS 新手,最近在学校买的SAS 9.1.3学生版本,BASE SAS,7张CD,EMAIL得到的
安装TXT文件,实际安装只用了其中5张,装在笔记本上,1G内存。
每次运行很简单的程序,程序最开始的几个RUN都能顺利实现。从第4,5个开始,
EDITOR窗口总是显示程序在RUNNING,实际已经死了,等5分钟都是这样,而且硬盘没动
。必需强行终止程序。
同样的这个程序,如果BATCH SUBMIT,可以生成正确的LOG 和LIST。
换个程序,同样的问题出现,不胜其烦。
从新安装,问题还是同样。
请问各位高手,我这个SAS是个甚么毛病,怎么解决。
谢谢各位的时间。鞠躬。
☆─────────────────────────────────────☆
sir ( 郎 ) 于 (Thu Feb 1 23:10:29 2007) 提到:
do you have
quit;
at the e
p********a
发帖数: 5352
22
来自主题: Statistics版 - [合集] 问一门课,关于sas programming
☆─────────────────────────────────────☆
minicooper (coocoo) 于 (Thu Feb 1 19:07:57 2007) 提到:
想找CRO的sas programming/statistican的工作
看到一门课sas programming in clinical trial
这里是course description
This course prepares individuals with SAS programming experience to process
clinical-trials data to meet the increasing demand for these skills in the
biotech and pharmaceutical industries.
Through lecture and lab, participants learn about various aspects of SAS
programming related to processing clinica
r**********0
发帖数: 1
23
来自主题: Statistics版 - 我也来攒个RP,谈谈SAS ADVANCE。
上个周五过的SAS ADVANCE,我不是什么牛人,就说说一般情况,谁也别表扬我出来现
啊。
我大概用了1个半月左右的时间准备ADV,SQL部分用的是网上免费的教程,Macro部分用
的是某前辈网友推荐的SAS Macro Programming Made Easy,筒子们在版内搜一下就可
以找到。在此,我要向推荐这些资料的前辈高人们深表感谢,有这两本书,ADV的SQL和
Macro确实就可以搞定。随后,我在www.sasor.com上发现了SAS关于ADV的那个tutoring
,后来另有前辈高人在这个版贴过那个tutoing package,它们是一样的。我就是把这
两本书和tutoring看了两遍之后去考ADV的。
我个人觉得ADV里有Adv Tech部分在Tutoring里介绍得很少,以至我在看到这部分的题
目时完全不知道它在胡说八道什么。考完之后,我查了一下,如果要对这部分有完全的
control,建议大家可以看看SAS有一本adv tech的course notes,每一页上的字印得斗
大,一字一金,其实不过都是些对参数,命令之类的定义。我个人觉得把Macro和SQL搞
j***m
发帖数: 14
24
选择1:学校的software license,120/年,需要年年交钱,但是东西全,什么都有。
另外一年半以后我就不在学校了,之后如果工作,也不需要自己买了。
选择2:自己买SAS Learning Edition 4.1,amazon.com现在卖150,可以用到2011年底
,缺点当然是只有Base SAS 9.1.3, STAT, GRAPH, QC, ETS, and SAS Enterprise
Guide 4.1,外加little SAS book。 不知道够不够用,而且估计我也不会需要四年,
两年差不多吧。
我是新手,打算自己学点基本东西,帮我看看买哪个合算?谢了。
p********a
发帖数: 5352
25
☆─────────────────────────────────────☆
zzwhe (zzwhe) 于 (Sun Mar 2 13:10:49 2008) 提到:
如题:
没有SAS相关的工作经验,只是在上学时学过一段时间SAS,最近在版内看到关于SAS
certificate的一些信息,不知到只有这个certificate没有相关的工作经验,是不是对
找工作没有什么作用啊?
非常感谢!
☆─────────────────────────────────────☆
dragoninsea (鲜花送给谁?) 于 (Sun Mar 2 13:28:57 2008) 提到:
如果是ms,有sas cert比没有好;如果是phd,完全没必要考那个东西.

☆─────────────────────────────────────☆
zzwhe (zzwhe) 于 (Sun Mar 2 17:00:06 2008) 提到:
非常谢谢!
有MS,还没有phd。
最近准备申请MPH,不知会怎么样?
要早下决定,时间是不能浪费的!
☆──────────
i**8
发帖数: 59
26
来自主题: Statistics版 - Do you want a SAS job in pharma industry?
我们的第4期SAS专业培训班现在开始招生。我们的培训班一直是免费的,这次也不例外
。不同的是,这期是专门为四川灾区拯灾而专门开设的。
我们希望这期的学员为祖国的孩子们建一所结实的房子献出我们的爱心。捐款属于自愿
,多少不限。
论捐款方式:文学城—〉我爱我家—〉论坛推荐博客—〉家坛小学
现在来介绍BANCOVA和我们的Program。
BANCOVA是在美国注册的网上学校,专门致力于培养在Pharmaceutical company 和CRO
的专业 SAS程序员。通过这个2-3个月的培训班,每个学生都能够达到有一年实际工作
经验的能力,不需要任何培训就能够直接上岗。本培训班不仅教授SAS和统计,而且帮
助写resume和战胜interview,夺取工作OFFER。
本学校由正在Pharmaceutical Industry工作的 2位资深Biostatistician and SAS
Programmer和2名助教组成。他们现在都正在Pharmaceutical Industry工作。所有的作
业和Project都是来自实际工作。所以,我们独特的优势是,你们学到的全是hands-on
j*******n
发帖数: 38
27
来自主题: Statistics版 - Help on SAS/Linux installation
Hello,
I am using the openSUSE linux system on my desktop. I want to practice SAS/
Linux to get more unix experience for job searching. Is there anyone could
lend me a SAS/Linux installation CDs? I also would like to buy a student
copy of the SAS/Linux CDs. My school doesn't have it, only SAS for windows.
Thanks!
Please feel free to reply me. Thanks!
s***y
发帖数: 1130
28
来自主题: Statistics版 - 新人报道,兼问SAS data set的问题
小女子在一科研机构写统计 script,上半年还是用R折腾。最近一个项目开工,用的是
SAS的O/Rpackage,只好折过来再捡SAS。
SAS和R处理数据的结构很是不同。目前我遇到的问题是,要取一个data set里面某个
observation的某个variable的值,在R里面直接用行列坐标就可以引用了,而在SAS里
面,是否要引入array或者index? 如果要遍历一个variable的所有observations,是
否能把所有observations变成一个array来做do 循环?
有高手点拨一下。
c*******o
发帖数: 8869
29
来自主题: Statistics版 - 新人报道,兼问SAS data set的问题
the major difference bw SAS and other programming language is that SAS has a
build-in loop for data reading. If you process SAS in the DATA step, SAS
automatically loop through all the data without the need to manually set up
an array and loop.
in your case, if you want to read the value of varname1 from observation 10
into a macro variable, you can do the followings:
data _null_;
set yourdata;
if _n_=10 then call symput('read',varname1);
run;
now the value of varname1(character) is re
s*****z
发帖数: 202
30
来自主题: Statistics版 - 请教一道SAS Base的问题
能不能再请教一道题
87. The SAS data set BANKS is listed below:
BANKS
name rate
FirstCapital 0.0718
DirectBank 0.0721
VirtualDirect 0.0728
The following SAS program is submitted:
data newbank;
do year = 1 to 3;
set banks;
capital + 5000;
end;
run;
Which one of the following represents how many observations and variables
will exist in the SAS data set NEWBANK?
A. 0 observations and 0 variables
B. 1 observations and 4 variables
C. 3 observations and 3 variables
D. 9 observations and 2 variables
我在SAS里run了一遍
A*********u
发帖数: 8976
31
来自主题: Statistics版 - SAS问题请教
telnet看格式还好
不知道www看乱不乱
如果乱
你可以copy & paste
然后自己整理
也可以找我要.sas的file

/**********************************************************************
FILENAME: sumcatfb.sas SAS VERSION: SAS V9.1.3
AUTHOR: X Li DATE: 09May2008
PROTOCOL:
ABSTRACT: Define a macro for summary of a categorical variable with
a by variable, listing all catogaries.
ASSUMES:
CREATES:
REVISION HISTORY:
************************************************************
r********e
发帖数: 100
32
来自主题: Statistics版 - How to format the SAS output?
I am switching R to SAS now because there are a lot of fancy procedures in
SAS. As a newbie of SAS, I want to know whether there is a good way to
customize the SAS output that is usually long and complex?
Thank you very much and happy Halloween weekend
c**********e
发帖数: 2007
33
Use proc lifetime. It is the parametric approach.
proc reliability in SAS/QC is the same as proc lifetime
in SAS/STAT. Be careful for left censored case, one
of them requires left bound as 0 while the other requires
missing (use .).
For interval censored data, SAS only has parametric
approach. For other data, SAS has nonparametric, i.e.,
Kaplan-Meier (proc lifetest), and even more popular
semi-parametric approach. i.e., Cox regression (proc
phreg).
c**********n
发帖数: 80
34
来自主题: Statistics版 - 请教两个关于SAS的问题
谢谢~
对于第二个问题,我想把日期比如1/10/1960变成sas date:10
我的做法是直接input date mmddyy10. 但是说mmddyy10.的format找不到。mmddyyyy10
. 和mmddyyyy8.也是一样。
这种情况下怎么解决呢?BTW,yyyymmdd10. 不行。
我的数据是:
symbol date volume
symbol_1 10/12/1999 98
symbol_2 11/2/1999 2
symbol_3 6/15/1998 40
要求把date转换成sas date
log 如下:
1 data qqq;
2 set 'd:\sas\mysaslib\qp\arg';
3 input symbol $ volume;
4 run;
ERROR: No DATALINES or INFILE statement.
NOTE: The SAS System stopped processing this step be
A*********u
发帖数: 8976
35
☆─────────────────────────────────────☆
jbbmm (summer) 于 (Mon Jan 28 12:36:21 2008) 提到:
选择1:学校的software license,120/年,需要年年交钱,但是东西全,什么都有。
另外一年半以后我就不在学校了,之后如果工作,也不需要自己买了。
选择2:自己买SAS Learning Edition 4.1,amazon.com现在卖150,可以用到2011年底
,缺点当然是只有Base SAS 9.1.3, STAT, GRAPH, QC, ETS, and SAS Enterprise
Guide 4.1,外加little SAS book。 不知道够不够用,而且估计我也不会需要四年,
两年差不多吧。
我是新手,打算自己学点基本东西,帮我看看买哪个合算?谢了。
☆─────────────────────────────────────☆
AOL (QingXinGuaYu) 于 (Mon Jan 28 17:17:39 2008) 提到:
choice 2 will b
o****o
发帖数: 8077
36
来自主题: Statistics版 - 好心的人--求sas setinit file!
if u r in School, you can copy that file out from the subfolder where SAS
installed
for example, SAS 9.1.x has the following folder containing the setinit file:
C:\Program Files\SAS\SAS 9.1\core\sasinst
or ask your friends in college to copy that for u
cheers
V******l
发帖数: 21
37
来自主题: Statistics版 - 靠 sas advance 需要 sas 软件吗?
sas advance 比 sas base 难很多吗?只看书能考过吗?需要买 sas learning
edition 准备考试吗?谢谢!
p********a
发帖数: 5352
38
来自主题: Statistics版 - 急问,SAS Enterprise Guide and SAS.
应该可以。俺从来不用它,不过反正能RUN SAS CODE 就可以了
俺的印象是Enterprise Guide 没有LICENSE,但必须有SAS BASE才能用。也就是说,它
的LICSENSE就是SAS BASE的LICENSE。肯定是你同事不懂
k***c
发帖数: 171
39
【 以下文字转载自 JobHunting 讨论区 】
发信人: kolic (kolic), 信区: JobHunting
标 题: 请问SAS培训班对找工作多大帮助? (转载)
发信站: BBS 未名空间站 (Mon Mar 23 17:07:48 2009), 站内
发信人: kolic (kolic), 信区: SanFrancisco
标 题: 请问湾区这边的SAS培训班对找工作多大帮助?
发信站: BBS 未名空间站 (Mon Mar 23 17:07:01 2009), 转信
LD闲置在家大半年,心态都不好了,听电台老是打SAS广告,想试试。
问一下学完这种培训班,拿两个证书,对找工作到底有多大提高呢?
LD以前的背景的IT咨询,她说这边做这个方面职位少,SAS倒是很多,
所以想转一转。或者这里有没有读过这个培训的,想咨询一下效果如何。
培训的收费4k多/80h,还是很贵的。十分感谢~~
A*V
发帖数: 3528
40
今天刚过了BASE,发文庆祝一下, 呵呵. 虽然俺老人家也用了十来年SAS了, 不看看复习
提纲还真不一定能过. Shame ah. 这也就是老板抽风, 让我们都去考, 不然真不会去折
腾.
按复习提纲的说法, 这个证书是跟版本走的, 不会过期. 另外据说SAS网站上依然可以
查谁是有证书的, 所以没有证书的话, 还是不要往RESUME上写了… … 其实以我的经验
, 如果你没有这方面的工作经验, 有个证书还有点帮助, 否则意义不大.
另外, 我也没看别的复习材料, 更没有作题, 就看了一本三百来页的SAS®
Certification Review: Base Programming for SAS®9 Course Notes. 这东西大
家都有吧?
p********a
发帖数: 5352
41
来自主题: Statistics版 - SAS使用到什么水平才算是高手?
SUGI上好多TALK都是很基本的。。。比方说10 BASIC SKILLS FOR SAS/SQL。。。
SAS这个东西,定义高手很困难,因为SAS其实方向太多,你是MACRO的高手,可能你XML
、ODS搞不过别人,你是SCL的高手,可能你SQL不行。何况这些方方面面不需要都掌握
的。另外,SAS和行业结合很深,一个行业的高手可能在另一个行业需要好长时间PICK
UP
一般来说,只要把MACRO,BASE,SQL熟练掌握,可以算准高手了,如果再在本行业熟练
运用,那就可以算高手了
m**********g
发帖数: 7
42
来自主题: Statistics版 - 考SAS adv之前是必须要先考base吗?
So your case is taking the SAS adv without taking the SAS BASE? Thanks.
Just want to make sure. As I want to take SAS adv without taking SAS BASE
this month.
B****n
发帖数: 11290
43
我認為SAS還是有其便利處的
如果同樣是一般的統計方法 可是你需要一個特殊的功能 這時候SAS通常是能在help or
manual裡找到這樣的功能 R就很可能需要你自己寫的比較多
可是對於SAS沒有package的方法 你堅持用SAS多數情況下就只能坐以待斃 呵呵
u****d
发帖数: 142
44
Bancova R-learning 学习班现在开始招生。R是属于GNU系统的一个自由、免费、源代
码开放的软件,是一个用于统计计算和统计制图的优秀工具。 R不仅在学术界,在工业
界,在制药行业也得到了日益广泛的应用。通过这个学习班,同学们可以掌握如何运用
R及latex制作制药行业要求的表格。这个学习班的另一个目的是为了下一期(第6期)
SAS专业培训班筛选生员。R和SAS虽然是两种不同的语言,但如果你掌握了R,也就能够
更深刻的理解SAS, 也就能够了解两者各自的优势劣势。
Bancova SAS专业培训班已经办了5期了,各方面的反响都不错,培训班毕业的学生也大
多找到了工作,即使是在经济衰退的困难时期。Bancova 毕业的学生不仅会拥有深厚的
专业知识,工作技能,更重要的是,他们将拥有行业内的network。Bancova的师生将会
互相帮助,互通信息,这一点也正是Bancova越办越好的原因之一。当然,Bancova的成
功也离不开创办者john以及多位师生的不懈努力和无私奉献。
R-learning学习班虽然是第一次开办,但Bancova的精神也将会体现并保持下去。希望
d*******8
发帖数: 321
45
I just downloaded SAS Enterprise Guide from internet. But I can not read the
online tutor because the notice:
Please return to the home page and set your SAS version to a version of
SAS Enterprise Guide or SAS Learning Edition.
If your version is already set to one of these, then check to be sure the
version is appropriate for this lesson.
b*****e
发帖数: 75
46
来自主题: Statistics版 - 请教: sas adv
SAS Advanced Programming Practice Exam for SAS 9 和
SAS certification prep guide: Advanced programming for sas 9
是同一本书么?
第二本好象跟online tutor是一样的,第一本有那里可以下载?必须要订购么?
THX!
j****x
发帖数: 222
47
我的系统:Windows 7 Home Premium, 64bit.
昨天搜到这个帖子,今天折腾好几个小时,算是装成功了吧,不过有些诡异。
有几点想说明一下:
--plan_file是空的无所谓,在开始的某一步选择'Install SAS Foundation and
Related Software',而不是默认的'Perform a Planned Deployement'就可以了。
--sid文件去本帖楼主给的另外帖子的链接里download,不过要稍作如下修改:
Order=540304
Setnumid=70082279
--文件expire了直接改电脑系统时间就可以了
可以参考这个链接:http://sitelic.colorado.edu/sas/download/install/
不过我的安装过程跟链接里的不是完全一样。
我安装过程诡异的地方:到上面给的链接14步的时候,install 'SAS Fundation'花了
巨久时间,我就退出了,想重新装。可是竟然发现SAS已经装好了,而且test了一些
code,可以运行,结果也对。不知道是不是完全装好
w*****9
发帖数: 122
48
来自主题: Statistics版 - 怎么避免sas batch模式打开sas文件
谢谢 PharmD
我点了open with...选了SASOACT.EXE打开 还选了那个always open using this
program...
双击后可以直接打开sas, 但是只有那个untitle的editor 1,我要打开的文件还是没有
我还必须得选file-open program...才能打开我要的.sas文件

datatype=
SAS
o******6
发帖数: 538
49
☆─────────────────────────────────────☆
johnuseast (john) 于 (Wed Jan 28 12:10:18 2009) 提到:
我们的第5期SAS专业培训班现在开始招生。我们的培训班一直是免费的,这次也不例外

BANCOVA是在美国注册的网上学校,专门致力于培养在Pharmaceutical company 和CRO
的专业 SAS程序员。通过这个2,3个月的培训班,每个学生都能够达到有一年实际工作
经验的能力,不需要任何培训就能够直接上岗。本培训班不仅教授SAS和统计,而且帮
助写resume和战胜interview,夺取工作OFFER。
Technica l goals:
1) To produce FDA standard Tables and Listings and Figures (TLFs)
independently without reading others’ programs.
2) To be able to use SASpedia – a SAS software deve
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)