Created
February 21, 2022 15:01
-
-
Save MJacobs1985/791f4e447167766d5912c7f2ce638af8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DataExplorer::plot_missing(arc) | |
| DataExplorer::plot_correlation(arc_month, | |
| cor_args = list("use" = "pairwise.complete.obs")) | |
| DataExplorer::plot_correlation(arc_company, | |
| cor_args = list("use" = "pairwise.complete.obs")) | |
| ggplot(arc, aes(x=rochefant, colour=description)) + | |
| geom_density(aes(fill=description), alpha=0.2) + | |
| theme_bw() + facet_wrap(~description) | |
| ggplot(arc, aes(x=rochefant, colour=strain)) + | |
| geom_density(aes(fill=strain), alpha=0.2) + | |
| theme_bw() + facet_wrap(~strain) | |
| ggplot(arc, aes(x=rochefant, colour=region)) + | |
| geom_density(aes(fill=region), alpha=0.2) + | |
| theme_bw() + facet_wrap(~region) | |
| ggplot(arc, aes(x=rochefant, colour=generation1)) + | |
| geom_boxplot(aes(fill=generation1), alpha=0.2) + | |
| theme_bw() + facet_wrap(~region) | |
| ggplot(arc, aes(x=rochefant, colour=`generation(a/s)`)) + | |
| geom_boxplot(aes(fill=`generation(a/s)`), alpha=0.2) + | |
| theme_bw() + facet_wrap(~region) | |
| heatmap(table(arc$`generation(a/s)`, arc$generation1)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment