-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathDESCRIPTION
104 lines (104 loc) · 2.98 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
Package: ggpp
Type: Package
Title: Grammar Extensions to 'ggplot2'
Version: 0.5.8-1.9000
Date: 2024-11-13
Authors@R:
c(
person("Pedro J.", "Aphalo", email = "[email protected]", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-3385-972X")),
person("Kamil", "Slowikowski", role = "ctb", comment = c(ORCID = "0000-0002-2843-6370")),
person("Michał", "Krassowski", role = "ctb", comment = c(ORCID = "0000-0002-9638-7785")),
person("Daniel", "Sabanés Bové", role = "ctb"),
person("Stella", "Banjo", role = "ctb")
)
Maintainer: Pedro J. Aphalo <[email protected]>
Description: Extensions to 'ggplot2' respecting the grammar of graphics
paradigm. Geometries: geom_table(), geom_plot() and geom_grob() add insets to
plots using native data coordinates, while geom_table_npc(), geom_plot_npc()
and geom_grob_npc() do the same using "npc" coordinates through new
aesthetics "npcx" and "npcy". Statistics: select observations based on 2D
density. Positions: radial nudging away from a center point and nudging away
from a line or curve; combined stacking and nudging; combined dodging and
nudging.
License: GPL (>= 2)
LazyData: TRUE
LazyLoad: TRUE
ByteCompile: TRUE
Depends:
R (>= 4.0.0),
ggplot2 (>= 3.5.0)
Imports:
stats,
grid,
grDevices,
rlang (>= 1.0.6),
vctrs (>= 0.6.0),
magrittr (>= 2.0.1),
glue (>= 1.6.0),
gridExtra (>= 2.3),
scales (>= 1.2.0),
tibble (>= 3.1.8),
dplyr (>= 1.1.0),
xts (>= 0.13.0),
zoo (>= 1.8-11),
MASS (>= 7.3-58),
polynom (>= 1.4-0),
lubridate (>= 1.9.0),
stringr (>= 1.4.0)
Suggests:
knitr (>= 1.40),
rmarkdown (>= 2.20),
ggrepel (>= 0.9.2),
gginnards(>= 0.1.1),
magick (>= 2.7.3),
testthat (>= 3.1.5),
vdiffr (>= 1.0.5)
URL: https://docs.r4photobiology.info/ggpp/,
https://github.com/aphalo/ggpp
BugReports: https://github.com/aphalo/ggpp/issues
Encoding: UTF-8
RoxygenNote: 7.3.1
VignetteBuilder: knitr
Collate:
'annotate.r'
'compute-npc.r'
'dark-or-light.R'
'example-data.R'
'geom-grob.R'
'ggpp-legend-draw.R'
'utilities.R'
'ggp2-margins.R'
'geom-label-linked.r'
'geom-label-npc.r'
'geom-label-pairwise.r'
'geom-margin-arrow.r'
'geom-margin-grob.r'
'geom-margin-point.r'
'geom-plot.R'
'geom-point-linked.r'
'geom-quadrant-lines.R'
'geom-table.R'
'geom-text-linked.r'
'geom-text-npc.r'
'geom-text-pairwise.R'
'ggpp.R'
'position-nudge-center.R'
'position-nudge-dodge.R'
'position-nudge-dodge2.R'
'position-nudge-jitter.R'
'position-nudge-line.R'
'position-nudge-stack.R'
'position-nudge-to.R'
'scale-continuous-npc.r'
'stat-apply.R'
'stat-dens1d-filter.r'
'stat-dens1d-labels.r'
'stat-dens2d-filter.r'
'stat-dens2d-labels.r'
'stat-format-table.R'
'stat-functions.R'
'stat-panel-counts.R'
'stat-quadrant-counts.R'
'try-data-frame.R'
'weather-data.R'
'wrap-labels.R'