由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 这个数据怎么处理?
相关主题
sas adv问题Ask a SAS question
急问,在线等:SAS adv certification Question about SELECT v.s IF/THEN ELSE哪个SAS function可以读这样的variable
sas question包子求sas 问题解决办法
[合集] sas 日期的转换sas date variable exchange
Help: covert SAS char date into numeric date关于substr一问, thanks!
想用first累计character的变量,可以吗?急请教一个sas 问题
问一个sas format问题sas问题,大过节的不知道有没有人看到
A SAS problemhelp in sas
相关话题的讨论汇总
话题: compress话题: numeric话题: variable话题: 数据
进入Statistics版参与讨论
1 (共1页)
h******s
发帖数: 3420
1
有一组原始test result, 是character variable, 比较messy, 像这样:
1..2 , 1.5 , 1.24mg , 0.877 , >2.0 , 5+ , 2.0m
想把数值抽出来,做成numeric variable
怎么写code 比较简洁?
谢谢
r****t
发帖数: 276
2
可以试试compress function, 比如b=compress(a, 'abcdefghijklmnopqrstuvwxyz+>);

【在 h******s 的大作中提到】
: 有一组原始test result, 是character variable, 比较messy, 像这样:
: 1..2 , 1.5 , 1.24mg , 0.877 , >2.0 , 5+ , 2.0m
: 想把数值抽出来,做成numeric variable
: 怎么写code 比较简洁?
: 谢谢

s******r
发帖数: 1524
3
keep option is better

);

【在 r****t 的大作中提到】
: 可以试试compress function, 比如b=compress(a, 'abcdefghijklmnopqrstuvwxyz+>);
r****t
发帖数: 276
4
ZKSS?我觉得楼主的数据是一个变量啊

【在 s******r 的大作中提到】
: keep option is better
:
: );

R*********i
发帖数: 7643
5
1..2 is not numeric?
s******r
发帖数: 1524
6
keep option in compress

【在 r****t 的大作中提到】
: ZKSS?我觉得楼主的数据是一个变量啊
h******s
发帖数: 3420
7
Thanks, this works well, except for 1..2, I have to replace '..' with '.'
There is still something like '1.2.5' ....
Any easier way to deal with multiple '.'?

【在 s******r 的大作中提到】
: keep option in compress
t****a
发帖数: 1212
8
try regular expression?
in R:
gsub('[.]*','.',yourcharacter)
1 (共1页)
进入Statistics版参与讨论
相关主题
help in sasHelp: covert SAS char date into numeric date
R能处理多大的数据集?想用first累计character的变量,可以吗?
[合集] help please! A sas question问一个sas format问题
Import excel file to sas (the first 8 or more observationsA SAS problem
sas adv问题Ask a SAS question
急问,在线等:SAS adv certification Question about SELECT v.s IF/THEN ELSE哪个SAS function可以读这样的variable
sas question包子求sas 问题解决办法
[合集] sas 日期的转换sas date variable exchange
相关话题的讨论汇总
话题: compress话题: numeric话题: variable话题: 数据