-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improvements to the PlotGridConfiguration
class
#293
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
6c4ec20
Bump package version; update NEWS
IndrajeetPatil 72d1a1b
Also update website for new package version
IndrajeetPatil 5547ca1
rest
IndrajeetPatil 752653f
Update appveyor.yml
IndrajeetPatil 82ff845
Add print method for plot grid config
IndrajeetPatil 4abaf5d
Merge branch 'develop' into 274_print_plotgridconfig
IndrajeetPatil fd8ef16
document
IndrajeetPatil 6589c5e
better example
IndrajeetPatil 19f2031
better headers
IndrajeetPatil 39f364e
add more aesthetic parameters for plot grid config
IndrajeetPatil b4dedd8
style
IndrajeetPatil c36ed6a
caption position
IndrajeetPatil 09fe717
bump version
IndrajeetPatil 24586c2
Add PlotAnnotationTextSize
IndrajeetPatil e9e87c9
move enums to plot grid file
IndrajeetPatil b6c6559
Merge branch 'develop' into 274_print_plotgridconfig
IndrajeetPatil 7d0730f
docs
IndrajeetPatil 2ef6577
Update PlotGridConfiguration.Rd
IndrajeetPatil 5d32738
needed for vdiffr tests
IndrajeetPatil 783baba
move all enums to their own file
IndrajeetPatil 0b83765
Merge branch 'develop' into 274_print_plotgridconfig
IndrajeetPatil File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,93 +1,100 @@ | ||
Package: tlf | ||
Type: Package | ||
Title: TLF Library | ||
Version: 1.3.0 | ||
Authors@R: | ||
c(person(given = "Open-Systems-Pharmacology Community", | ||
role = "cph"), | ||
person(given = "Michael", | ||
family = "Sevestre", | ||
role = c("aut", "cre"), | ||
email = "michael@design2code.ca"), | ||
person(given = "Pierre", | ||
family = "Chelle", | ||
role = "aut", | ||
email = "chelle.pierre@gmail.com"), | ||
person(given = "Abdullah", | ||
family = "Hamadeh", | ||
role = "aut", | ||
email = "aoh123@gmail.com")) | ||
Description: An implementation of the Table, Listing and Figure concepts in R. This library provides | ||
a standardized approach to creating tables and graphs based on conventions over configurations. | ||
License: GPL-2 | file LICENSE | ||
URL: https://github.com/open-systems-pharmacology/tlf-library | ||
BugReports: https://github.com/open-systems-pharmacology/tlf-library/issues | ||
Imports: | ||
ggplot2 (>= 3.3.0), | ||
R6, | ||
jsonlite, | ||
ospsuite.utils, | ||
patchwork | ||
Depends: | ||
R (>= 3.6) | ||
Encoding: UTF-8 | ||
RoxygenNote: 7.2.0 | ||
Roxygen: list(markdown = TRUE) | ||
Suggests: | ||
knitr, | ||
rmarkdown, | ||
testthat (>= 2.1.0) | ||
VignetteBuilder: knitr | ||
Collate: | ||
'aaa-utilities.R' | ||
'aggregation-input.R' | ||
'aggregation-summary.R' | ||
'atom-plots.R' | ||
'boxwhisker-datamapping.R' | ||
'boxwhisker-get-measure.R' | ||
'boxwhisker-plotconfiguration.R' | ||
'datamapping-grouping.R' | ||
'datamapping-groupmapping.R' | ||
'datamapping-range.R' | ||
'datamapping-xy.R' | ||
'datamapping-xygroup.R' | ||
'ddiratio-datamapping.R' | ||
'error-checks.R' | ||
'font.R' | ||
'histogram-datamapping.R' | ||
'label.R' | ||
'messages.R' | ||
'obs-vs-pred-datamapping.R' | ||
'observed-data-mapping.R' | ||
'pkratio-datamapping.R' | ||
'pkratio-get-measure.R' | ||
'plot-boxwhisker.R' | ||
'plot-ddiratio.R' | ||
'plot-grid.R' | ||
'plot-histogram.R' | ||
'plot-obs-vs-pred.R' | ||
'plot-pkratio.R' | ||
'plot-res-vs-pred.R' | ||
'plot-timeprofile.R' | ||
'plot-tornado.R' | ||
'plotconfiguration-axis.R' | ||
'plotconfiguration-background.R' | ||
'plotconfiguration-export.R' | ||
'plotconfiguration-label.R' | ||
'plotconfiguration-legend.R' | ||
'plotconfiguration.R' | ||
'themes.R' | ||
'timeprofile-datamapping.R' | ||
'timeprofile-helper.R' | ||
'tlf-env.R' | ||
'tornado-datamapping.R' | ||
'tornado-plotconfiguration.R' | ||
'utilities-aesthetics.R' | ||
'utilities-axis.R' | ||
'utilities-background.R' | ||
'utilities-export.R' | ||
'utilities-label.R' | ||
'utilities-legend.R' | ||
'utilities-mapping.R' | ||
'utilities-theme.R' | ||
'utils.R' | ||
Package: tlf | ||
Type: Package | ||
Title: TLF Library | ||
Version: 1.4.0 | ||
Authors@R: | ||
c(person(given = "Open-Systems-Pharmacology Community", | ||
role = "cph"), | ||
person(given = "Michael", | ||
family = "Sevestre", | ||
role = c("aut", "cre"), | ||
email = "michael@design2code.ca"), | ||
person(given = "Pierre", | ||
family = "Chelle", | ||
role = "aut", | ||
email = "chelle.pierre@gmail.com"), | ||
person(given = "Abdullah", | ||
family = "Hamadeh", | ||
role = "aut", | ||
email = "aoh123@gmail.com"), | ||
person(given = "Indrajeet", | ||
family = "Patil", | ||
role = "ctb", | ||
email = "patilindrajeet.science@gmail.com", | ||
comment = c(ORCID = "0000-0003-1995-6531", Twitter = "@patilindrajeets"))) | ||
Description: An implementation of the Table, Listing and Figure concepts in R. This library provides | ||
a standardized approach to creating tables and graphs based on conventions over configurations. | ||
License: GPL-2 | file LICENSE | ||
URL: https://github.com/open-systems-pharmacology/tlf-library | ||
BugReports: https://github.com/open-systems-pharmacology/tlf-library/issues | ||
Imports: | ||
ggplot2 (>= 3.3.0), | ||
R6, | ||
jsonlite, | ||
ospsuite.utils, | ||
patchwork | ||
Depends: | ||
R (>= 3.6) | ||
Encoding: UTF-8 | ||
RoxygenNote: 7.2.0 | ||
Roxygen: list(markdown = TRUE) | ||
Suggests: | ||
knitr, | ||
rmarkdown, | ||
testthat (>= 3.0.3), | ||
vdiffr (>= 1.0.0) | ||
VignetteBuilder: knitr | ||
Collate: | ||
'aaa-enums.R' | ||
'aaa-utilities.R' | ||
'aggregation-input.R' | ||
'aggregation-summary.R' | ||
'atom-plots.R' | ||
'boxwhisker-datamapping.R' | ||
'boxwhisker-get-measure.R' | ||
'boxwhisker-plotconfiguration.R' | ||
'datamapping-grouping.R' | ||
'datamapping-groupmapping.R' | ||
'datamapping-range.R' | ||
'datamapping-xy.R' | ||
'datamapping-xygroup.R' | ||
'ddiratio-datamapping.R' | ||
'error-checks.R' | ||
'font.R' | ||
'histogram-datamapping.R' | ||
'label.R' | ||
'messages.R' | ||
'obs-vs-pred-datamapping.R' | ||
'observed-data-mapping.R' | ||
'pkratio-datamapping.R' | ||
'pkratio-get-measure.R' | ||
'plot-boxwhisker.R' | ||
'plot-ddiratio.R' | ||
'plot-grid.R' | ||
'plot-histogram.R' | ||
'plot-obs-vs-pred.R' | ||
'plot-pkratio.R' | ||
'plot-res-vs-pred.R' | ||
'plot-timeprofile.R' | ||
'plot-tornado.R' | ||
'plotconfiguration-axis.R' | ||
'plotconfiguration-background.R' | ||
'plotconfiguration-export.R' | ||
'plotconfiguration-label.R' | ||
'plotconfiguration-legend.R' | ||
'plotconfiguration.R' | ||
'themes.R' | ||
'timeprofile-datamapping.R' | ||
'timeprofile-helper.R' | ||
'tlf-env.R' | ||
'tornado-datamapping.R' | ||
'tornado-plotconfiguration.R' | ||
'utilities-aesthetics.R' | ||
'utilities-axis.R' | ||
'utilities-background.R' | ||
'utilities-export.R' | ||
'utilities-label.R' | ||
'utilities-legend.R' | ||
'utilities-mapping.R' | ||
'utilities-theme.R' | ||
'utils.R' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Yuri05 Bumping the version. Is that okay?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes :)