-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Customizing plots #22
Comments
Dear @samarth8392 , Thank you for your interest in Regarding your problem: if you have a lot of data to display you should consider to filter out the calculated runs dataframe before calculating graphs in order to focus only on a subset of individuals or populations per graph. For the p <- ggplot2::ggplot(teilsatz)
p <- p + theme_bw() # This will apply a white background
p <- p + ggplot2::geom_segment(data=teilsatz,aes(x = from, y = id, xend = to,
yend = id,colour=as.factor(group)),alpha=alfa, size=grosse) Maybe the background only is not enough and you need also to remove grids, take a look at this guide in order to remove elements from If you have suggestions (or if you can provide examples) on how to display many data on the same graph, let us know |
Hi Paolo, |
I am wondering is there a way to customize the plot_Runs?
I have 15 populations and total 115 individuals and it is pretty hard to visualize output. Also, can we change the ggplot theme to a more basic theme without the gray background?
Thanks.
The text was updated successfully, but these errors were encountered: