Home
Blog
All tags
Pieces of code
Bioinfo trainings
Machine learning
Online books
Coursera
Teaching
Contact
CV
View on GitHub
R -
unname()
: remove name of an object
26 Aug 2017
x <- c(nom = "Jean") # x # nom # "Jean" unname(x) # [1] "Jean"
[
R
function
object
]