Skip to content

Typo in Data Visualisation Chapter #67

Description

@srappel

For item 2 In this block of exercises: https://aeturrell.github.io/python4DS/data-visualise.html#exercises-1

(ggplot(penguins, aes(x = species)) +
  geom_bar(color = "red"))

(ggplot(penguins, aes(x = species)) +
  geom_bar(fill = "red"))

species should be wrapped in quotes:

(ggplot(penguins, aes(x = "species")) +
  geom_bar(color = "red"))

(ggplot(penguins, aes(x = "species")) +
  geom_bar(fill = "red"))

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions