由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - sas question
相关主题
an R questionSAS问题请教:Numeric Variable Length的设定
a question about length assignment问道SAS ADV真题
[合集] SAS一问,急~!问大家一道SAS认证题
几个简单的用R的问题。请教一个统计的题目
问个sas 的问题请教一个R 的编程问题
sas question。sas问题,大过节的不知道有没有人看到
问题请教如何找到两个相同character在一个string中的位置?
包子求sas 问题解决办法[合集] How to specify a variable as missing
相关话题的讨论汇总
话题: string话题: why话题: variable话题: length话题: sas
进入Statistics版参与讨论
1 (共1页)
m**o
发帖数: 5261
1
data _null_;
do i=1 to 30;
string='a';
string=string||'3';
put string;
end;
run;
Why the value of variable "string" is 'a' and why '3' is not attached?
Thank you
k*******a
发帖数: 772
2
because the length by default in your code is only 1
you can add length string $100;
and use string=strip(string)||'3'

【在 m**o 的大作中提到】
: data _null_;
: do i=1 to 30;
: string='a';
: string=string||'3';
: put string;
: end;
: run;
: Why the value of variable "string" is 'a' and why '3' is not attached?
: Thank you

q**j
发帖数: 10612
3
it is initiated as a character variable with length 1.

【在 m**o 的大作中提到】
: data _null_;
: do i=1 to 30;
: string='a';
: string=string||'3';
: put string;
: end;
: run;
: Why the value of variable "string" is 'a' and why '3' is not attached?
: Thank you

m**o
发帖数: 5261
4
got it. Thank you

【在 k*******a 的大作中提到】
: because the length by default in your code is only 1
: you can add length string $100;
: and use string=strip(string)||'3'

1 (共1页)
进入Statistics版参与讨论
相关主题
[合集] How to specify a variable as missing问个sas 的问题
How to deal with single quotation mark?sas question。
复杂分类变量recoding?问题请教
How can I loop through a list of strings as variables in a包子求sas 问题解决办法
an R questionSAS问题请教:Numeric Variable Length的设定
a question about length assignment问道SAS ADV真题
[合集] SAS一问,急~!问大家一道SAS认证题
几个简单的用R的问题。请教一个统计的题目
相关话题的讨论汇总
话题: string话题: why话题: variable话题: length话题: sas