Skip to content
Snippets Groups Projects
Commit 99585834 authored by Reinhold Kainhofer's avatar Reinhold Kainhofer
Browse files

Don't define any shape in plotMortalityTables; They can be later given as an...

Don't define any shape in plotMortalityTables; They can be later given as an explicit aes(..) object, anyway
parent 6c454bd1
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ plotMortalityTables = function(
if (!is.null(ages)) {
data = data[data$x %in% ages,]
}
pl = ggplot(subset(data, y > 0), aes(x = x, y = y, colour = group, shape = group)) +
pl = ggplot(subset(data, y > 0), aes(x = x, y = y, colour = group)) +
theme_bw() +
theme(
plot.title = element_text(size = 18, face = "bold"),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment