Skip to content

Issue in demonstration of Environment #1689

@BJacobB

Description

@BJacobB

The code writes

ggplot(diamonds, aes(x = carat, y = price)) +
geom_hex()I
ggsave("diamonds.png")

write_csv(diamonds, "data/diamonds.csv")

-> this is wrong as u first have to create the sub directory. hence, it should be:

ggplot(diamonds, aes(x = carat, y = price)) +
geom_hex()I
ggsave("data/diamonds.png")

write_csv(diamonds, "data/diamonds.csv")

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