Skip to content

Instantly share code, notes, and snippets.

@MJacobs1985
Created February 21, 2022 15:01
Show Gist options
  • Select an option

  • Save MJacobs1985/791f4e447167766d5912c7f2ce638af8 to your computer and use it in GitHub Desktop.

Select an option

Save MJacobs1985/791f4e447167766d5912c7f2ce638af8 to your computer and use it in GitHub Desktop.
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