由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 怎样用R subset character string
相关主题
[R]how to sample all possible continuous subset from ordered dataR一问
请教在R里面如何拆character string.How can I loop through a list of strings as variables in a
问一个用R计算年龄的问题which route in SAS is faster?
R 问题再问几个R的问题。
How can I do this in R?如何找到两个相同character在一个string中的位置?
Generate and Retrieve Many Objects with Sequential Names读文件到R出错?A <-read.matrix("D:\Course\matrix.csv", header = t, sep = ",")
R performace issuea question about SAS code
R 扫描matrix请问一个开问题的例子与用处
相关话题的讨论汇总
话题: unlist话题: yyy话题: string话题: strsplit话题: subset
进入Statistics版参与讨论
1 (共1页)
d*******1
发帖数: 854
1
一个string, 像xxx_yyy_zzzz_1, 怎样把yyy parse出来,根据yyy是被_分割开的第二
个string. 试了strsplit(data,'_')得到一个list, 不是想要的
g********r
发帖数: 8017
2
unlist()[2]

【在 d*******1 的大作中提到】
: 一个string, 像xxx_yyy_zzzz_1, 怎样把yyy parse出来,根据yyy是被_分割开的第二
: 个string. 试了strsplit(data,'_')得到一个list, 不是想要的

d*******1
发帖数: 854
3
我的数据是这样:
dataframe: fm:
name
xxx_yyy_24hr_1
xxx_yyy_24hr_2
xxx_yyy_48hr_1
xxx_yyy_48hr_2
split<- strsplit(fm$name,'_')
这样每一行产生四个元素, 假设原来的DATA 一共100行, 我用unlist就会产生4X100
元素, 所以用 unlist(split)[3]就把24hr 赋值给所有rows了。 必须这样:
fm$time<- unlist(split)[c(3,7,11,15......)]
但是我的总行数一般是开始不知道的, 怎么办呢?
谢谢了

【在 g********r 的大作中提到】
: unlist()[2]
g********r
发帖数: 8017
4
matrix(unlist(),nrow=4)[2,]

4X100

【在 d*******1 的大作中提到】
: 我的数据是这样:
: dataframe: fm:
: name
: xxx_yyy_24hr_1
: xxx_yyy_24hr_2
: xxx_yyy_48hr_1
: xxx_yyy_48hr_2
: split<- strsplit(fm$name,'_')
: 这样每一行产生四个元素, 假设原来的DATA 一共100行, 我用unlist就会产生4X100
: 元素, 所以用 unlist(split)[3]就把24hr 赋值给所有rows了。 必须这样:

h******e
发帖数: 6
5
unlist(lapply(split, function(x) {x[2]}))
t**i
发帖数: 688
6
do.call("rbind", strsplit(....))[,2]
d*******1
发帖数: 854
7
需要transpose 才行:
split<- strsplit(test$Experiment, '_')
msplit<- t(matrix(unlist(split),nrow=4))
test$time<- msplit[,3]

【在 g********r 的大作中提到】
: matrix(unlist(),nrow=4)[2,]
:
: 4X100

1 (共1页)
进入Statistics版参与讨论
相关主题
请问一个开问题的例子与用处How can I do this in R?
R data.frameGenerate and Retrieve Many Objects with Sequential Names
一个用R 进行data preparation的问题R performace issue
再问一个R问题R 扫描matrix
[R]how to sample all possible continuous subset from ordered dataR一问
请教在R里面如何拆character string.How can I loop through a list of strings as variables in a
问一个用R计算年龄的问题which route in SAS is faster?
R 问题再问几个R的问题。
相关话题的讨论汇总
话题: unlist话题: yyy话题: string话题: strsplit话题: subset