Skip to content

Commit

Permalink
Merge pull request #169 from TidierOrg/0.10.0-dev
Browse files Browse the repository at this point in the history
updates readme
  • Loading branch information
rdboyes authored Feb 9, 2025
2 parents 4c536bd + 04d52b5 commit d1643dd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ GLM = "1.9"
Images = "0.26.2"
KernelDensity = "0.6"
Loess = "0.6"
Makie = "0.21, 0.22"
Makie = "0.22"
Parquet2 = "0.2"
PooledArrays = "1.4"
Reexport = "1.2"
Test = "1.10"
Expand Down
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ TidierPlots.jl currently supports the top-level function `ggplot()`, plus:

Geoms:

- `geom_point`
- `geom_errorbar`
- `geom_path`, `geom_line`, and `geom_step`
- `geom_bar`, `geom_col`, and `geom_histogram`
- `geom_boxplot` and `geom_violin`
- `geom_tile`
- `geom_density`
- `geom_text` and `geom_label`
- Bar-like plots: `geom_bar`, `geom_col`, and `geom_histogram`
- Scatterplots: `geom_point`
- Line plots: `geom_path`, `geom_line`, `geom_step`, `geom_hline`, `geom_vline`
- Errors: `geom_errorbar` and `geom_errorbarh`
- Distributions: `geom_boxplot`, `geom_density`, `geom_violin`
- Curve fits: `geom_smooth`
- 3-variable: `geom_tile`
- Text: `geom_text` and `geom_label`

Makie Themes:

Expand All @@ -73,6 +73,7 @@ Additional Elements:
- `scale_[x|y]_[continuous|log[ |2|10]|logit|pseudolog10|sqrt|reverse]`
- `labs`
- `lims`
- `facet_grid` and `facet_wrap`

## Display Options for Quarto, Jupyter, and Pluto.jl

Expand Down
1 change: 0 additions & 1 deletion src/TidierPlots.jl
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ export geom_errorbar
export geom_errorbarh
export geom_violin
export geom_boxplot
export geom_contour
export geom_tile
export geom_text
export geom_label
Expand Down

2 comments on commit d1643dd

@rdboyes
Copy link
Member Author

@rdboyes rdboyes commented on d1643dd Feb 9, 2025

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release notes:

Breaking changes

  • Changed behaviour of plots when multiple scales are combined to match ggplot behaviour
  • Changed types of axis_options in Geom and GGPlot structs

New features

  • Added facet_grid

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

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

Registration pull request updated: JuliaRegistries/General/124593

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.11.0 -m "<description of version>" d1643dd67b35bb36283dbdc92907acac3dba1747
git push origin v0.11.0

Please sign in to comment.