Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

data viz #432

Closed
5 tasks done
carriewright11 opened this issue Jun 21, 2023 · 1 comment
Closed
5 tasks done

data viz #432

carriewright11 opened this issue Jun 21, 2023 · 1 comment
Labels
data viz Related to data visualization module

Comments

@carriewright11
Copy link
Member

carriewright11 commented Jun 21, 2023

Before Lab1

  • add a slide before lab one to show that you can modify a plot object by adding to it
  • add links to keys about line types, point types etc. on the theme explanation slides - actually just say that we are going to talk about that soon because we do it after the lab
  • maybe show how you can overwrite your specifications with layers ? idk if this should be before lab one or just in the common error section:
    example:
    Orange %>% ggplot(mapping = aes(x = circumference, y = age, color = Tree)) +
    geom_line(size = 0.8, color = "black", linetype = 2) +
    geom_point(size = 5, color = "red", alpha = 0.5) +
    theme_classic()

There are not multiple lines for each tree.

vs.
Orange %>% ggplot(mapping = aes(x = circumference, y = age, color = Tree)) +
geom_line(size = 0.8, color = "black", linetype = 2) +
geom_point(size = 5, color = "red", alpha = 0.5) +
theme_classic()

@carriewright11 carriewright11 added the data viz Related to data visualization module label Jun 21, 2023
@padmashris
Copy link
Collaborator

#500 takes care of 4/5 of these

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
data viz Related to data visualization module
Projects
None yet
Development

No branches or pull requests

2 participants