Skip to content

Commit

Permalink
fixed another issue with tibble from pivot_longer
Browse files Browse the repository at this point in the history
  • Loading branch information
jminnier committed Jun 30, 2020
1 parent 9dcd4db commit 9aa1c9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fun-analysisres.R
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ rna_scatterplot <- function(data_long, results,
sel_genes=NULL) {
group1 = group_sel[1]; group2 = group_sel[2]

data_long$value = data_long[,valuename]
data_long <- data_long %>% rename(value = valuename)

# remove this, takes too long, do up front
pp = data_long%>%filter(group%in%group_sel)
Expand Down

0 comments on commit 9aa1c9a

Please sign in to comment.