R dplyr: Variablen mit Hilfe von Zeichenfolgenfunktionen umbenennen
(Etwas verwandte Frage:Geben Sie neue Spaltennamen als Zeichenfolge in die Umbenennungsfunktion von dplyr ein.)
itten in einemdplyr
chain %>%
) Möchte ich mehrere Spaltennamen durch Funktionen ihrer alten Namen ersetzen (mittolower
odergsub
, etc.
library(tidyr); library(dplyr)
data(iris)
# This is what I want to do, but I'd like to use dplyr syntax
names(iris) <- tolower( gsub("\\.", "_", names(iris) ) )
glimpse(iris, 60)
# Observations: 150
# Variables:
# $ sepal_length (dbl) 5.1, 4.9, 4.7, 4.6, 5.0, 5.4, 4.6,...
# $ sepal_width (dbl) 3.5, 3.0, 3.2, 3.1, 3.6, 3.9, 3.4,...
# $ petal_length (dbl) 1.4, 1.4, 1.3, 1.5, 1.4, 1.7, 1.4,...
# $ petal_width (dbl) 0.2, 0.2, 0.2, 0.2, 0.2, 0.4, 0.3,...
# $ species (fctr) setosa, setosa, setosa, setosa, s...
# the rest of the chain:
iris %>% gather(measurement, value, -species) %>%
group_by(species,measurement) %>%
summarise(avg_value = mean(value))
Aha?rename
nimmt das Argumentreplace
Als einnamed character vector, with new names as values, and old names as names.
lso habe ich versucht:
iris %>% rename(replace=c(names(iris)=tolower( gsub("\\.", "_", names(iris) ) ) ))
aber dies (a) gibt @ zurüError: unexpected '=' in iris %>% ...
und (b) erfordern die namentliche Referenzierung des Datenrahmens aus der vorherigen Operation in der Kette, was in meinem tatsächlichen Anwendungsfall nicht möglich war.
iris %>%
rename(replace=c( )) %>% # ideally the fix would go here
gather(measurement, value, -species) %>%
group_by(species,measurement) %>%
summarise(avg_value = mean(value)) # I realize I could mutate down here
# instead, once the column names turn into values,
# but that's not the point
# ---- Desired output looks like: -------
# Source: local data frame [12 x 3]
# Groups: species
#
# species measurement avg_value
# 1 setosa sepal_length 5.006
# 2 setosa sepal_width 3.428
# 3 setosa petal_length 1.462
# 4 setosa petal_width 0.246
# 5 versicolor sepal_length 5.936
# 6 versicolor sepal_width 2.770
# ... etc ....