Analyse data from HGT_vs_DUP (javascript implementation)

There are two types of output. Averages over time, and the raw data. This document plots histograms of the raw data fow now. Below, give the output file generated by the code _raw.txt, and it plots … something.

Fitness distribution in population at variable points in time:

Here, some distributions are drawn using various plots:

data %>% filter(time > 400000) %>% ggplot(aes(x=value,fill=poptype)) + geom_histogram(position = "dodge",bins=20) + facet_wrap(~variable,scale="free") + scale_fill_manual(values=cols) + theme_bw() 

Note that the echo = FALSE parameter was added to the code chunk to prevent printing of the R code that generated the plot.