You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://codecov.io/gh/CollinErickson/ContourFunctions?branch=master)
21
21
@@ -33,6 +33,21 @@ The main functions are:
33
33
34
34
*`cf`: Passes arguments to `cf_function` or `cf_data` depending on whether the first argument is a function or numeric.
35
35
36
+
All of these functions make the plot using base graphics by default.
37
+
To make plots using ggplot2, add the argument `gg=TRUE`,
38
+
or put g in front of the function name.
39
+
E.g., `gcf_data(...)` is the same as `cf_data(..., gg=TRUE)`,
40
+
and makes a similar plot to `cf_data` but using ggplot2.
41
+
42
+
There are two functions for making plots in higher dimensions:
43
+
44
+
*`cf_4dim`: Plots functions with four inputs by making a series
45
+
of contour plots.
46
+
47
+
*`cf_highdim`: Plots for higher dimensional inputs by making a
48
+
contour plot for each pair of input dimensions and holding the other
0 commit comments