forked from slowkow/ggrepel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
164 lines (95 loc) · 3.91 KB
/
NEWS
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
ggrepel 0.5.1 2016-02-22
----------------------------------------------------------------
* Optimize C++ code further by reducing number of calls to `rnorm()`.
ggrepel 0.5 2016-02-08
----------------------------------------------------------------
* Push to CRAN.
ggrepel 0.4.6 2016-02-07
----------------------------------------------------------------
CHANGES
* Tweak `point.padding` so that users can configure how far labels are pushed
away from data points.
ggrepel 0.4.5 2016-02-06
----------------------------------------------------------------
CHANGES
* Optimize C++ code for a 2.5X speed improvment.
* Delete unnecessary .Rd files.
ggrepel 0.4.4 2016-02-05
----------------------------------------------------------------
FIXES
* Fix the bug when the line segment from the data point points to the origin
at (0,0) instead of the text label.
CHANGES
* Automatically recompute repulsion between labels after resizing the plot.
ggrepel 0.4.3 2016-01-18
----------------------------------------------------------------
CHANGES
* Change distance between segment and label in `geom_label_repel()`. Now there
is no gap between the end of the segment and the label border.
ggrepel 0.4.2 2016-01-15
----------------------------------------------------------------
FIXES
* Fix `spring_force()` so that it never returns NaN.
CHANGES
* Add `nudge_x` and `nudge_y` to better control positioning of labels.
ggrepel 0.4.1 2016-01-13
----------------------------------------------------------------
CHANGES
* Add `arrow` parameter to allow plotting arrows that point to the labeled data
points rather than plain line segments.
* Always draw segments, even if the labeled point is very close to the label.
FIXES
* Fix `point.padding` so that horizontal and vertical padding is calculated
correctly.
* Tweak forces to improve layout near borders and in crowded areas.
ggrepel 0.4 2016-01-12
----------------------------------------------------------------
FIXES
* Fix issue #7. Labels can now be placed anywhere in the plotting area instead
of being limited to the x and y ranges of their corresponding data points.
* Fix DESCRIPTION to require ggplot2 >= 2.0.0
CHANGES
* Add new parameter `point.padding` to add padding around the labeled points.
The line segment will stop before reaching the coordinates of the point. The
text labels are also now padded from the line segment to improve legibility.
* Add volcano plot to the vignette usage examples.
* Add Travis continuous integration to test against R-devel, R-release, and
R-oldrel.
* Dampen repulsion force to slightly improve algorithm efficiency.
* Move `intersect_line_rectangle()` to `src/repel_boxes.cpp`.
ggrepel 0.3 2016-01-08
----------------------------------------------------------------
CHANGES
* Remove unused imports: `colorspace`.
* Update NAMESPACE with new version of roxygen.
* Use spring force to attract each label to its own point.
* Change default maximum iterations from 10,000 to 2000.
* Update man pages.
* Remove unused code.
ggrepel 0.2.0 2016-01-07
----------------------------------------------------------------
CHANGES
* Update `geom_text_repel()` and `geom_label_repel()`.
* Change `label.padding` to `box.padding`.
* Remove unsupported parameters:
* position
* nudge_x
* nudge_y
* hjust
* vjust
* Remove unused imports.
DOCUMENTATION
* Add roxygen docs to all functions.
ggrepel 0.1.0 2016-01-05
----------------------------------------------------------------
NEW FEATURES
* Add `geom_label_repel()`.
* Add fudge width to help with legends.
* Add `expand=TRUE` to allow text to be placed in the expanded plot area.
* Add man/ folder.
* Add links to ggplot2 docs in vignette.
MINOR FEATURES
* Add unused R implementation of `repel_boxes()`, just for your reference.
ggrepel 0.0.1 2016-01-04
----------------------------------------------------------------
* Initial release to github.