Skip to content

Commit 5bb343f

Browse files
committed
OCD seealso
2 parents 3db6762 + f1ff945 commit 5bb343f

17 files changed

+35
-20
lines changed

R/gsplot-class.R

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
#' Used to change the class of inputs to "gsplot".
44
#'
55
#' @param x list
6+
#' @param config.file path to the file that will only be used for setting
7+
#' par in this one gsplot object. If NA (default), par is set by the global options set by
8+
#' loadConfig().
9+
#' @param theme path to the file that will only be used for setting
10+
#' the gsplot theme in this one gsplot object. If NA (default), there is no theme.
11+
#' @param frame.plot a logical indicating whether a box should be drawn around the plot.
612
#' @param \dots Further graphical parameters may also be supplied as arguments. See 'Details'.
713
#' @param config.file path to config yaml for individual gsplot object. Default is \code{NA} and means config options are taken from options.
814
#' @param theme path to theme for individual gsplot object. Default is \code{NA} and means no theme.

README.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -27,46 +27,46 @@ The goal of this package is to simplify plotting in R. This includes improving t
2727
</colgroup>
2828
<thead>
2929
<tr class="header">
30-
<th align="left">Feature</th>
31-
<th align="left">Description</th>
30+
<th>Feature</th>
31+
<th>Description</th>
3232
</tr>
3333
</thead>
3434
<tbody>
3535
<tr class="odd">
36-
<td align="left"><a href="#pipes">Piping and plots as objects</a></td>
37-
<td align="left">Easily add features to your plot.</td>
36+
<td><a href="#pipes">Piping and plots as objects</a></td>
37+
<td>Easily add features to your plot.</td>
3838
</tr>
3939
<tr class="even">
40-
<td align="left"><a href="#legend">Automatic legend</a></td>
41-
<td align="left">For each plot feature, a corresponding legend name can be specified. Eliminates the need to duplicate <code>par</code> arguments.</td>
40+
<td><a href="#legend">Automatic legend</a></td>
41+
<td>For each plot feature, a corresponding legend name can be specified. Eliminates the need to duplicate <code>par</code> arguments.</td>
4242
</tr>
4343
<tr class="odd">
44-
<td align="left"><a href="#limits">Automatic limits</a></td>
45-
<td align="left">Automatically regenerate limits of plot when new features are added.</td>
44+
<td><a href="#limits">Automatic limits</a></td>
45+
<td>Automatically regenerate limits of plot when new features are added.</td>
4646
</tr>
4747
<tr class="even">
48-
<td align="left"><a href="#error">Error bars</a></td>
49-
<td align="left">Apply error bars to points by specifying the upper and lower offsets.</td>
48+
<td><a href="#error">Error bars</a></td>
49+
<td>Apply error bars to points by specifying the upper and lower offsets.</td>
5050
</tr>
5151
<tr class="odd">
52-
<td align="left"><a href="#callouts">Callouts</a></td>
53-
<td align="left">Add a line and label in one call.</td>
52+
<td><a href="#callouts">Callouts</a></td>
53+
<td>Add a line and label in one call.</td>
5454
</tr>
5555
<tr class="even">
56-
<td align="left"><a href="#reverse">Axes reversal</a></td>
57-
<td align="left">Reverse the axis by specifying one argument to <code>axis()</code>.</td>
56+
<td><a href="#reverse">Axes reversal</a></td>
57+
<td>Reverse the axis by specifying one argument to <code>axis()</code>.</td>
5858
</tr>
5959
<tr class="odd">
60-
<td align="left"><a href="#embed">Embedded functions</a></td>
61-
<td align="left">Add extra plot features within a points call (no duplication of x/y values)</td>
60+
<td><a href="#embed">Embedded functions</a></td>
61+
<td>Add extra plot features within a points call (no duplication of x/y values)</td>
6262
</tr>
6363
<tr class="even">
64-
<td align="left"><a href="#where">Change rendering order</a></td>
65-
<td align="left">Manipulate what order plot features are rendered by specifying the argument <code>where</code></td>
64+
<td><a href="#where">Change rendering order</a></td>
65+
<td>Manipulate what order plot features are rendered by specifying the argument <code>where</code></td>
6666
</tr>
6767
<tr class="odd">
68-
<td align="left"><a href="#base">Compatibility with base</a></td>
69-
<td align="left">Can start a plot using <code>gsplot</code>, and add base R features afterwards.</td>
68+
<td><a href="#base">Compatibility with base</a></td>
69+
<td>Can start a plot using <code>gsplot</code>, and add base R features afterwards.</td>
7070
</tr>
7171
</tbody>
7272
</table>
-16 KB
Loading
-11.9 KB
Loading
-16.5 KB
Loading
-12.4 KB
Loading
-15.6 KB
Loading
-15.8 KB
Loading
-14.7 KB
Loading
-31.3 KB
Loading

0 commit comments

Comments
 (0)