如何在 R 中获取命名数字的名称?

How to get the name of a named num in R?

我正在尝试访问 R 中命名数字的名称。我的列表如下所示:

correlationCoeffs

Line          H.points.per.game  V.points.per.game  H.fg.made.per.game  V.fg.made.per.game
0.3724764838  0.2315726001       0.2315726001       0.2156721183        0.2156721183 

我知道如何访问特定号码和特定条目:

correlationCoeffs[["Line"]]
    0.3724764838
correlationCoeffs["Line"]
    Line
    0.3724764838

但我想访问给定索引的实际名称(例如,给定索引 1,我想得到 "Line" 作为结果)。

使用 names() 并提供索引可以帮助解决这个问题。

names(correlationCoeffs[index])