由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 再问几个R的问题。
相关主题
新人请教一下用R做一个简单graph问题sas adv问题
一个R做图的问题BASE 70题一问
怎样用R subset character string谁把人家老婆的帖子也删了?
sas 简单问题请教一个R的问题
如何找到两个相同character在一个string中的位置?问一个R的问题
读文件到R出错?A <-read.matrix("D:\Course\matrix.csv", header = t, sep = ",")SAS 求助: filenames
SAS help : get macro variables as an string but not character variable.[合集] STATA求助:怎样把Legend放到图的上方,不加边框; 怎样使得Axi
How to deal with single quotation mark?sas email
相关话题的讨论汇总
话题: rm话题: ls话题: list话题: names话题: character
进入Statistics版参与讨论
1 (共1页)
q**j
发帖数: 10612
1
请大家帮一下吧。
1. rm(list=ls())可以清除内存。
rm(x=ls())确不行。
> rm(x=ls())
Error in rm(x = ls()) : ... must contain names or character strings
> list
[1] "All" "Axys" "BI" "Connection" "FileName" "names
" "Q"
[8] "Temp" "x" "YYYYMMDD"
> class(list)
[1] "character"
> x=ls()
> x
[1] "All" "Axys" "BI" "Connection" "FileName" "list"
"names"
[8] "Q" "Temp" "x" "YYYYMMDD"
> class(x)
[1] "character"
看起来一回事。
e*n
发帖数: 1511
2
1. list 是 rm 的第二个参数。
2. google %in%

names

【在 q**j 的大作中提到】
: 请大家帮一下吧。
: 1. rm(list=ls())可以清除内存。
: rm(x=ls())确不行。
: > rm(x=ls())
: Error in rm(x = ls()) : ... must contain names or character strings
: > list
: [1] "All" "Axys" "BI" "Connection" "FileName" "names
: " "Q"
: [8] "Temp" "x" "YYYYMMDD"
: > class(list)

q**j
发帖数: 10612
3
thanks a lot. got it. will add it to the book.
o****o
发帖数: 8077
4
co-ask the first one

names

【在 q**j 的大作中提到】
: 请大家帮一下吧。
: 1. rm(list=ls())可以清除内存。
: rm(x=ls())确不行。
: > rm(x=ls())
: Error in rm(x = ls()) : ... must contain names or character strings
: > list
: [1] "All" "Axys" "BI" "Connection" "FileName" "names
: " "Q"
: [8] "Temp" "x" "YYYYMMDD"
: > class(list)

q**j
发帖数: 10612
5
read the doc for rm(), list is the name of the 2nd argument. not a variable
of list type we create.
q**j
发帖数: 10612
6
i got how to select if there is only one key variable. however, what to do i
f there are two are more? this is kind of hard?

【在 e*n 的大作中提到】
: 1. list 是 rm 的第二个参数。
: 2. google %in%
:
: names

q**j
发帖数: 10612
7
i figure out if we want to select records in one data frame, but not in anot
her one if there is only one key variable to match. but if there are two or
more, how to do it then? any advice?

【在 e*n 的大作中提到】
: 1. list 是 rm 的第二个参数。
: 2. google %in%
:
: names

1 (共1页)
进入Statistics版参与讨论
相关主题
sas email如何找到两个相同character在一个string中的位置?
请教SAS问题:这个code有什么办法简化吗?读文件到R出错?A <-read.matrix("D:\Course\matrix.csv", header = t, sep = ",")
请教一个R作图的命令SAS help : get macro variables as an string but not character variable.
SAS问题请教How to deal with single quotation mark?
新人请教一下用R做一个简单graph问题sas adv问题
一个R做图的问题BASE 70题一问
怎样用R subset character string谁把人家老婆的帖子也删了?
sas 简单问题请教一个R的问题
相关话题的讨论汇总
话题: rm话题: ls话题: list话题: names话题: character