我是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
答案 0 :(得分:4)
使用is(new_df)
,您会看到它是data.frame的列表。在这种情况下,您必须使用new_df[[1]]
来访问列表的第一个元素data.frame。