Skip to content

Commit

Permalink
fixes dependency issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rdboyes committed Sep 25, 2023
1 parent 4890aeb commit d480861
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 11 deletions.
7 changes: 0 additions & 7 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,16 @@ version = "0.3.0"
[deps]
AlgebraOfGraphics = "cbdf2221-f076-402e-a563-3d30da359d67"
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
ColorSchemes = "35d6a980-a343-548e-a6ea-1d62b119f2f4"
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
FixedPointNumbers = "53c48c17-4a7d-5ca2-90c5-79b7896eea93"
Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a"
MarketData = "945b72a4-3b13-509d-9b46-1525bb5c06de"
PalmerPenguins = "8b842266-38fa-440a-9b57-31493939ab85"
PlotUtils = "995b91a9-d308-5afd-9ec6-746e21dbc043"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"

[compat]
AlgebraOfGraphics = "0.6"
CairoMakie = "0.10"
DataFrames = "1.5"
Makie = "0.19"
MarketData = "0.13"
PalmerPenguins = "0.1"
Reexport = "1.2"
julia = "1.6"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ penguins = dropmissing(DataFrame(PalmerPenguins.load()))
@ggplot(data = penguins) +
@geom_bar(aes(x = species, color = island), position = "stack") +
@labs(x = "Species") +
@scale_color_manual(values = c("red", "green", "blue"))
@scale_color_manual(values = c("#CB3C33", "#389826", "#9558B2"))
```
![](assets/example_col_stack.png)

Expand Down
Binary file modified assets/example_col_stack.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 0 additions & 3 deletions src/TidierPlots.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ using AlgebraOfGraphics
using DataFrames
using Reexport
using Colors
using PlotUtils
using FixedPointNumbers
using ColorSchemes

include("structs.jl")
include("geom.jl")
Expand Down

2 comments on commit d480861

@rdboyes
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Error while trying to register: "Tag with name v0.3.0 already exists and points to a different commit"

Please sign in to comment.