如何在R中访问嵌套dataf.frame / list的成员

时间:2019-04-06 12:51:31

标签: r list dataframe nested

在R中,我定义了VPCSecurityGroup: Type: AWS::EC2::SecurityGroup Properties: GroupDescription: 'Open security group for subnet IPS' VpcId: !Ref VPC VPCSecurityGroupIngress: Type: AWS::EC2::SecurityGroupIngress Properties: GroupId: !Ref VPCSecurityGroup IpProtocol: tcp FromPort: 0 ToPort: 65535 SourceSecurityGroupId: !Ref VPCSecurityGroup VPCSecurityGroupEgress: Type: AWS::EC2::SecurityGroupEgress Properties: GroupId: !Ref VPCSecurityGroup IpProtocol: tcp FromPort: 0 ToPort: 65535 DestinationSecurityGroupId: !Ref VPCSecurityGroup 类型的对象xxx 出于测试目的,我仅从一个大样本中保留了10条记录

data.frame

当我使用class(xxx) [1] "data.frame" 时,我看到有46个变量,但我只需要一个(数字45准确地称为Geo”

names(xxx)

[45] "Geo" 的结构在记录上有所不同。为简单起见,我仅显示前两个的结构:

[45]

我的问题:如何简单地访问不同记录中的不同变量?例如:第二条记录中的“ lat”,等等。

0 个答案:

没有答案