samp2 <- samp[,-1]
rownames(samp2) <- samp[,1]
data$row_names <- row.names(data) # Apply row.names function
data # Print updated data
# x1 x2 row_names
# 1 A e 1
# 2 B d 2
library("dplyr")
data <- tibble::rownames_to_column(data, "row_names") # Apply rownames_to_column
data # Print updated data
# row_names x1 x2
# 1 1 A e
# 2 2 B d
# 3 3 C c
d <- cbind(rownames(d), data.frame(d, row.names=NULL))
library(tidyverse)
samp %>% remove_rownames %>% column_to_rownames(var="names")
samp2 <- samp[,-1]
rownames(samp2) <- samp[,1]
> samp.with.rownames <- data.frame(samp[,-1], row.names=samp[,1])
Code Example |
---|
R :: gather function in r |
R :: convert a datetime to date r |
R :: ggplot2 legend text |
R :: fill the na data in mean value in r |
R :: R extract regex from string |
R :: r number of blanks in the data |
R :: geom_point r |
R :: plot porportion bar chart in r |
R :: comment faire un boucle sur r |
R :: replace_na |
R :: make the first row as header in r |
R :: r remove regex from string |
R :: select R |
R :: generate pair with one same variable in r |
R :: point estimates and confidence intervals in r |
R :: return the name of the dataset in r |
R :: logistic inverse CDF in r |
R :: R ggplot 2 legend text |
R :: list variables in dataframe r |
R :: meaning of %% R |
R :: r while loop |
Rust :: read file buffer rust |
Rust :: rust .0 |
Rust :: rust hello world |
Rust :: armanriazi•rust•vec•some•pop |
Rust :: where in Rust |
Rust :: armanriazi•rust•concept•dynamic•dispatch |
Rust :: armanriazi•rust•type•wrapper•vs•clone |
Rust :: rust-analyzer tab space |
Rust :: rust how to make print happen before asking for input |