美文网首页
R 函数学习 - names()

R 函数学习 - names()

作者: Thinkando | 来源:发表于2020-04-22 12:45 被阅读0次
    • 提取变量名
    Get the names of all variables in the dataset
    
    names(mtcars)
    
    > names(mtcars)
    
     [1] "mpg" "cyl"  "disp" "hp"  "drat" "wt"  "qsec" "vs"  "am"  "gear"
    
    [11] "carb"
    

    相关文章

      网友评论

          本文标题:R 函数学习 - names()

          本文链接:https://www.haomeiwen.com/subject/ygfiihtx.html