diff --git a/R/ggplot2.R b/R/ggplot2.R index c88bbc6..6c34bcf 100644 --- a/R/ggplot2.R +++ b/R/ggplot2.R @@ -98,9 +98,9 @@ banc_neuron_comparison_plot <- function(neuron1, # Create the plot p <- ggplot2::ggplot() + geom_neuron.mesh3d(x = mesh, rotation_matrix = rotation_matrix, alpha = 0.05, low = "grey90", high = "grey50") + - geom_neuron(x=neuron_pruned1, rotation_matrix = rotation_matrix, low = "turquoise", high = "navy", alpha = 0.5, linewidth = 0.3) + - geom_neuron(x=neuron_pruned2, rotation_matrix = rotation_matrix, low = "darkred", high = "coral", alpha = 0.5, linewidth = 0.3) + - geom_neuron(x=neuron_pruned3, rotation_matrix = rotation_matrix, low = "darkgreen", high = "chartreuse", alpha = 0.5, linewidth = 0.3) + + geom_neuron(x=neuron_pruned1, rotation_matrix = rotation_matrix, low = "blue", high = "navy", alpha = 0.5, linewidth = 0.3) + + geom_neuron(x=neuron_pruned2, rotation_matrix = rotation_matrix, low = "darkred", high = "red", alpha = 0.5, linewidth = 0.3) + + geom_neuron(x=neuron_pruned3, rotation_matrix = rotation_matrix, low = "darkgreen", high = "green", alpha = 0.5, linewidth = 0.3) + ggplot2::coord_fixed() + ggplot2::theme_void() + ggplot2::guides(fill="none",color="none") +