结果:找到“scan 函数”相关内容17个,排序为按回复时间降序,搜索更多相关帖子请点击“高级”
scan函数怎么用?
6 个回复 - 20875 次查看
书上说
scan函数能把用tab分割的txt文件数据读入成matrix数据,我试了以后不行啊,只能读入成vector形式的数据啊
2013-7-18 18:15 - bertf - R语言论坛
scan函数的用法
3 个回复 - 3068 次查看
看看这个https://my.oschina.net/stephenyng/blog/537399
2016-12-14 09:52 - 伪数据分析师 - R语言论坛
compress scan字符型函数
6 个回复 - 9743 次查看
小白求解
有关常用字符型
函数问题:
1、compress
函数有几个参数,我认为只有两个,第一个代表哪个变量,第二个参数代表去除哪些字符,那下面的代码有三个变量,其中哪个inft是什么意思?
data height;
set ...
2016-11-4 21:14 - 王贴贴123456 - SAS专版
%scan宏函数怎么用
3 个回复 - 13216 次查看
%let word=%
scan(&text,&i,&delim);上面这句程序是干什么用的呢?
2013-1-30 18:58 - ihust - SAS专版
scan函数的应用问题
1 个回复 - 1627 次查看
现在有一列数据为:
{“var1”:"234","brand":"OMG","motor":""}
{“var1”:"321","brand":"YS","motor":"123"}
如何变成
var1 brand motor
234 OMG 空
321 YS 123
空的意思那个值为空
有大神可以解 ...
2016-7-15 15:23 - wodematlab - SAS专版
scan 函数的小问题
4 个回复 - 4142 次查看
QUESTION 76
The following SAS program is submitted:
data work.test;
Author = 'Agatha Christie';
First = substr(
scan(author,1,' ,'),1,1);
run;
Which one of the following is the length of the va ...
2015-2-27 11:01 - hailingkatherin - SAS专版
SAS scan 函数是否可以扫描多个字符
5 个回复 - 8530 次查看
大家好,我在使用SAS
scan 函数时想使用两个字符作为分割符号,但是结果出来的都是以其中一个字符为分割符号的情况,比如 clean_name=
scan(name,1,"SHO") 请教一下如何能让SAS把两个以上的字符作为分割符号。谢谢
2014-10-23 16:59 - brushington - SAS专版
%scan函数
0 个回复 - 613 次查看
%
scan宏
函数怎么用
%let word=%
scan(&text,&i,&delim);上面这句程序是干什么用的呢?[/backcolor][hr]
zhangzachary[/backcolor]
在 &text 里面寻找以 &delim 为分隔符的第 &i 个文本内容,赋值给 word 宏变量。[ ...
2013-1-30 19:27 - ihust - 学习笔记1.0
scan函数的modifier
3 个回复 - 2344 次查看
此处用到了
scan函数的三个modifier
sas help的说明如下:
d or D adds digits to the list of characters.
k or Kcauses all characters that are not in the list of characters to be treated as delimiters ...
2012-12-27 16:12 - Imasasor - SAS专版
请问substr和scan等函数是如何影响字符长度的?
5 个回复 - 6213 次查看
以代码为例 :data test;
first='ipswich,england';
city=substr(first,1,7);
city_country=city||';'||'england';
run;
这段程序city_country的长度是25。
data test;
author='Agatha Christie';
first ...
2012-4-26 10:35 - 水晶石斑鱼 - SAS专版