python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to order alluvials stratums in a custom way
I made this alluvial:
As you can imagine, I would like the 9-16 to be between the 1-8 and the 17-24.
This is my code:
ggplot(data = werkuren_thuis_freq,
aes(y = Freq,
axis1 = s2_we...
Victor Nielsen
Votes: 0
Answers: 1
Change fontsizes of characters in alluvial Plot
I'm trying to fix this issue for quite some time now and no code seems to work here. I'm not that experienced in R, so maybe my problem is easy to fix. The following code shall present an Alluvial plo...
LostInR
Votes: 0
Answers: 2
Making an alluvial/sankey diagram using the first axis as the fill
I have this data:
https://docs.google.com/spreadsheets/d/18sTSOzVEmSEI2KGfGSvRT_0BbzQ9n87kCGZH-cSULCs/edit?usp=sharing (put below the code to produce it)
I use this code:
library(ggplot2)
library(ggal...
Victor Nielsen
Votes: 0
Answers: 2
Problem creating alluvial diagram using ggalluvial
I have this dataset:
type <- c(1, 2, NA, 1, 2, NA)
freq <- c(75, 12, 25, 69, 22, 32)
time <- c("before", "before", "before", "after", "after"...
Victor Nielsen
Votes: 0
Answers: 1