Skip to content

Commit

Permalink
Merge branch 'main' into feature_ptsize
Browse files Browse the repository at this point in the history
  • Loading branch information
jcvdav authored Dec 4, 2023
2 parents 0e11ebf + b3799fa commit bb9f2fd
Show file tree
Hide file tree
Showing 29 changed files with 2,101 additions and 283 deletions.
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@
^docs$
^pkgdown$
^\.github$
^TESTING$
^.vscode$
32 changes: 20 additions & 12 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,27 +1,35 @@
Package: ggiplot
Title: ggplot2 Equivalents of fixest::iplot()
Version: 0.0.1.9010
Title: ggplot2 equivalents of fixest's `iplot` and `coefplot` functions
Version: 0.0.1.9011
Authors@R:
person(given = "Grant",
family = "McDermott",
role = c("aut", "cre"),
email = "grantmcd@uoregon.edu",
comment = c(ORCID = "0000-0001-7883-8573"))
Description: Provides ggplot2 equivalents of fixest::iplot() for producing
"event study" plots. Enables some additional functionality and convenience
features, including grouped mutli_fixest object facetting and programatic
updating of existing plots (e.g. themes and aesthetics).
c(person(given = "Grant",
family = "McDermott",
role = c("aut", "cre"),
email = "gmcd@amazon.com",
comment = c(ORCID = "0000-0001-7883-8573")),
person(given = "Laurent",
family = "Berge",
role = "ctb",
email = "laurent.berge@u-bordeaux.fr")
)
Description: Provides ggplot2 equivalents of fixest::iplot and fixest::coefplot
for producing nice "event study" and coefficient plots, respectively. Enables
some additional functionality and convenience features, including grouped
multi-fixest object faceting and programatic updating of existing plots
(e.g., themes and aesthetics).
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
RoxygenNote: 7.2.3.9000
URL: http://grantmcdermott.com/ggiplot/
BugReports: https://github.com/grantmcdermott/ggiplot/issues
Depends:
ggplot2 (>= 2.2.0)
Imports:
fixest (>= 0.11.2),
dreamerr,
ggh4x,
scales,
utils,
marginaleffects (>= 0.10.0),
Expand Down
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Generated by roxygen2: do not edit by hand

export(aggr_es)
export(ggcoefplot)
export(ggiplot)
export(iplot_data)
import(ggplot2)
3 changes: 2 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# ggiplot 0.0.1.9010 (development version)
# ggiplot 0.0.1.9011 (development version)

## New features

- Support for `ggcoefplot`, a ggplot equivalent of `coefplot` (#28).
- Support `keep` and `drop` arguments for subsetting coefficients (#22).

## Bug fixes and breaking changes
Expand Down
401 changes: 290 additions & 111 deletions R/ggiplot.R

Large diffs are not rendered by default.

Loading

0 comments on commit bb9f2fd

Please sign in to comment.