Skip to content

Instantly share code, notes, and snippets.

@karan19100
Created July 18, 2020 17:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karan19100/681405bd6875589b84ddb2135c33853c to your computer and use it in GitHub Desktop.
Save karan19100/681405bd6875589b84ddb2135c33853c to your computer and use it in GitHub Desktop.
scatterplot_by_karanshah
qplot(HEMAGLOBIN, HEMATOCRIT, data = newdata,
main = "HEMAGLOBIN and HEMATOCRIT relationship") +
theme(plot.title = element_text(hjust = 0.5)) +
geom_point(colour = "blue", size = 1.5) +
scale_y_continuous(breaks = c(30:65), minor_breaks = NULL) +
scale_x_continuous(breaks = c(10:25), minor_breaks = NULL)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment