これがサンプルdata.frame
とlist
それdata.frame
を2回繰り返したものです。
test <- read.table(header=TRUE, text="ID Category Value
2323 Friend 23.40
3434 Foe -4.00")
temp <- list(A = test, B = test)
オリジナルの名前を変更したいだけの場合は、次のことをdata.frame
試してください。
names(test) <- tolower(names(test))
test
# id category value
# 1 2323 Friend 23.4
# 2 3434 Foe -4.0
data.frame
内のすべてのの名前を変更したい場合は、次のことlist
を試してください。
lapply(temp, function(x) { names(x) = tolower(names(x)); x })
# $A
# id category value
# 1 2323 Friend 23.4
# 2 3434 Foe -4.0
#
# $B
# id category value
# 1 2323 Friend 23.4
# 2 3434 Foe -4.0