-1

R中有一个数据,对象是:

> y
[0,1000) [1000,1500) [1500,2000) [2000,2500) [2500,3000) [3000,3500) [3500,5000]   
     13          44          29          16           9           3           5 
> attributes(y)
$dim
[1] 7
$dimnames
$dimnames[[1]]
[1] "[0,1000)"    "[1000,1500)" "[1500,2000)" "[2000,2500)" "[2500,3000)" "[3000,3500)" "[3500,5000]"
$class
[1] "table"

如果我想生产它,我怎样才能y在 R 中创建一个表?
如果没有向量,我想创建一个y,不使用table(cut(some_vector))
我想直接创建它,而不是根据table(cut(some_vector))

我已经解决了,可以简单化吗?

y<-c(13,44,29,16,9,3,5) 
names(y)<-c( "[0,1000)","[1000,1500)","[1500,2000)","[2000,2500)","[2500,3000)"," [3000,3500)","[3500,5000]")  
as.table(y)->z

z是我想要的。

4

1 回答 1

0

read.table是你的朋友。使用text=..论据


nms <- read.table(text="[0,1000) [1000,1500) [1500,2000) [2000,2500) [2500,3000) [3000,3500) [3500,5000]", stringsAsFactors=FALSE)
y   <- read.table(text="     13          44          29          16           9           3           5 ", stringsAsFactors=FALSE)

y <- as.table(as.numeric(unlist(y)))
dimnames(y) <- list(nms)

> attributes(y)
$dim
[1] 7

$dimnames
$dimnames[[1]]
[1] "[0,1000)"    "[1000,1500)" "[1500,2000)" "[2000,2500)" "[2500,3000)" "[3000,3500)"
[7] "[3500,5000]"


$class
[1] "table"
于 2013-05-20T01:51:05.180 回答