What is about the first column in R's dataset mtcars?

后端 未结 2 547
温柔的废话
温柔的废话 2020-11-30 11:51

I think I am missing a fundamental concept about R\'s data frames.

head(mtcars)
                   mpg cyl disp  hp drat    wt  qsec vs am gear carb
Mazda RX         


        
相关标签:
2条回答
  • 2020-11-30 12:02

    A shorter one liner argument with data.tablePackage will make the rowname a column.

    library(data.table)
    setDT(mtcars, keep.rownames = TRUE[])
    

    head(mtcars)

          rn           mpg cyl disp  hp drat    wt  qsec vs am gear carb
    Mazda RX4         21.0   6  160 110 3.90 2.620 16.46  0  1    4    4
    Mazda RX4 Wag     21.0   6  160 110 3.90 2.875 17.02  0  1    4    4
    Datsun 710        22.8   4  108  93 3.85 2.320 18.61  1  1    4    1
    Hornet 4 Drive    21.4   6  258 110 3.08 3.215 19.44  1  0    3    1
    Hornet Sportabout 18.7   8  360 175 3.15 3.440 17.02  0  0    3    2
    Valiant           18.1   6  225 105 2.76 3.460 20.22  1  0    3    1
    
    0 讨论(0)
  • 2020-11-30 12:28

    They are row names, to access them use:

    rownames(mtcars)
    

    For column names use colnames, to see both row and column names, we can use:

    dimnames(mtcars)
    

    To modify, for example the first row:

    rownames(mtcars)[1] <- "myNewName"
    

    When data frame is created with data.frame, row names are assigned with 1:n numbers.

    mydata <- data.frame(x = 1:5)
    

    Then we can modify them:

    rownames(mydata) <- paste0("MyName", 1:5)
    

    Or we can add rownames when creating the data.frame:

    mydata <- data.frame(x = 1:5, row.names = paste0("MyName", 1:5))
    

    Note: rownames are not very reliable, for example see this post. (this could be subjective opinion and I avoid them by reassigning rownames to columns)

    data.table and dplyr packages prefer not to have them. You can always reassign rownames into a columns as:

    mydata$myNames <- rownames(mydata)
    
    0 讨论(0)
提交回复
热议问题