2

我是 R 新手,我需要一些帮助来了解为什么我无法正确访问我的数据框

> str(new_df)
List of 1    <~~~~  SEE THIS LINE  (note to OP, sorry for commenting on the question - RS)
 $ :'data.frame':   16 obs. of  2 variables:
  ..$ x: num [1:16] 2002 2003 2004 2005 2006 ...
  ..$ y: num [1:16] 457320 431640 412090 389090 396020 ...
> new_df$x
NULL
4

1 回答 1

4

使用is(new_df),你会看到它是一个 data.frame 的列表。在这种情况下,您将不得不使用new_df[[1]]来访问列表的第一个元素,即 data.frame。

于 2013-05-01T16:32:38.063 回答