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
Branches
Tags
No related merge requests found
...@@ -58,7 +58,7 @@ plotMortalityTables = function( ...@@ -58,7 +58,7 @@ plotMortalityTables = function(
if (!is.null(ages)) { if (!is.null(ages)) {
data = data[data$x %in% 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_bw() +
theme( theme(
plot.title = element_text(size = 18, face = "bold"), 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