问题
I'm trying to preserve the order of columns when I gather them from wide to long format. The problem I'm having is after I gather
and summarize
the order is lost. The number of columns is huge so I don't want to manually type the order.
Here's an example:
library(tidyr)
library(dplyr)
N <- 4
df <- data.frame(sample = c(1,1,2,2),
y1.1 = rnorm(N), y2.1 = rnorm(N), y10.1 = rnorm(N))
> df
sample y1.1 y2.1 y10.1
1 1 1.040938 0.8851727 -0.3617224
2 1 1.175879 1.0009824 -1.1352406
3 2 -1.501832 0.3446469 -1.8687008
4 2 -1.326817 0.4434628 -0.8795962
What I want is to preserve the order of the columns. After I do some manipulation, the order is lost. Seen here:
dfg <- df %>%
gather(key="key", value="value", -sample) %>%
group_by(sample, key) %>%
summarize(mean = mean(value))
> filter(dfg, sample == 1)
sample key mean
<dbl> <chr> <dbl>
1 1 y1.1 0.2936335
2 1 y10.1 0.6170505
3 1 y2.1 -0.2250543
You can see how it puts y10.1
ahead of y2.1
which I don't want. What I want is to preserve that order, seen here:
dfg <- df %>%
gather(key="key", value="value", -sample)
> filter(dfg, sample == 1)
sample key value
1 1 y1.1 0.60171521
2 1 y1.1 -0.01444823
3 1 y2.1 0.81566726
4 1 y2.1 -1.26577581
5 1 y10.1 0.41686388
6 1 y10.1 0.81723707
For some reason the group_by
and summarize
operations change the order. I'm not sure why. I tried the ungroup
command but that doesn't do anything. As I said earlier, my actual data frame has many columns and I need to preserve the order. The reason to preserve order is so I can plot the data in the correct order.
Any ideas?
回答1:
Or you can convert the key column to a factor with levels reflecting the original column names' order:
df %>%
gather(key="key", value="value", -sample) %>%
mutate(key=factor(key, levels=names(df)[-1])) %>% # add this line to convert the key to a factor
group_by(sample, key) %>%
summarize(mean = mean(value)) %>%
filter(sample == 1)
# A tibble: 3 x 3
# Groups: sample [1]
# sample key mean
# <dbl> <fctr> <dbl>
#1 1 y1.1 0.8310786
#2 1 y2.1 -1.2596933
#3 1 y10.1 0.8208812
回答2:
I found a workable solution by using a lookup table. It seems to work for me because I can extract the column names and assign an ordered number to the column name and then pair with my data.frame
.
Here's the solution:
lookup <- tibble(key = c("y1.1", "y2.1", "y10.1"),
index = c(1,2,3))
> left_join(dfg, lookup, by="key")
# A tibble: 6 x 4
sample key mean index
<dbl> <chr> <dbl> <dbl>
1 1 y1.1 0.2936335 1
2 1 y10.1 0.6170505 3
3 1 y2.1 -0.2250543 2
4 2 y1.1 1.3652070 1
5 2 y10.1 0.9889233 3
6 2 y2.1 0.5216553 2
回答3:
If your columns are really ordered by the number it contains, this should work :
library(readr)
df %>%
gather(key="key", value="value", -sample) %>%
group_by(sample, key) %>%
summarize(mean = mean(value)) %>%
arrange(parse_number(key)) %>% # <- sorting by number contained in key
filter(sample == 1)
# # A tibble: 3 x 3
# # Groups: sample [1]
# sample key mean
# <dbl> <chr> <dbl>
# 1 1 y1.1 -0.9236688
# 2 1 y2.1 -0.2168337
# 3 1 y10.1 0.5041981
回答4:
The tidyverse
packages allow the elegant solution now:
library(tidyverse)
N <- 4
df <- data.frame(sample = c(1,1,2,2),
y1.1 = rnorm(N), y2.1 = rnorm(N), y10.1 = rnorm(N))
df %>%
gather("key", "value", -sample, factor_key = T) %>%
group_by(sample, key) %>%
summarise(mean = mean(value))
which results in
# A tibble: 6 x 3
# Groups: sample [2]
sample key mean
<dbl> <fct> <dbl>
1 1 y1.1 0.0894
2 1 y2.1 0.551
3 1 y10.1 0.254
4 2 y1.1 -0.555
5 2 y2.1 -1.36
6 2 y10.1 -0.794
回答5:
Yet another way could be to arrange
the dataframe using a customised version of the key column you want to sort on:
library(dplyr)
library(tidyr)
df %>%
gather(key="key", value="value", -sample) %>%
group_by(sample, key) %>%
summarize(mean = mean(value)) %>%
arrange(as.numeric(stringr::str_replace(key, "y", "")), .by_group = TRUE)
#> # A tibble: 6 x 3
#> # Groups: sample [2]
#> sample key mean
#> <dbl> <chr> <dbl>
#> 1 1 y1.1 0.07001689
#> 2 1 y2.1 1.15349430
#> 3 1 y10.1 1.18266024
#> 4 2 y1.1 0.42616604
#> 5 2 y2.1 1.05891682
#> 6 2 y10.1 -0.12561209
来源:https://stackoverflow.com/questions/46981189/preserve-order-of-columns-when-going-from-wide-to-long-format