MCPcopy Index your code

hub / github.com/DJDuque/pgfplots / functions

Functions61 in github.com/DJDuque/pgfplots

↓ 22 callersMethodadd_key
Add a key to control the appearance of the picture. This will overwrite any previous mutually exclusive key. # Examples ``` use pgfplots::{Picture,
src/lib.rs:195
↓ 21 callersMethodadd_key
Add a key to control the appearance of the plot. This will overwrite any previous mutually exclusive key. # Examples ``` use pgfplots::axis::plot::{
src/axis/plot.rs:136
↓ 6 callersMethodshow_pdf
Show the picture environment in a standalone PDF document. This will create a file in the location returned by [`std::env::temp_dir`] and open it with
src/lib.rs:346
↓ 4 callersMethodset_title
Set the title of the axis environment. This can be valid LaTeX e.g. inline math. # Examples ``` use pgfplots::axis::Axis; let mut axis = Axis::new(
src/axis.rs:136
↓ 3 callersMethodadd_key
Add a key to control the appearance of the axis. This will overwrite any previous mutually exclusive key. # Examples ``` use pgfplots::axis::{Axis,
src/axis.rs:176
↓ 3 callersMethodset_x_label
Set the label of the *x* axis. This can be valid LaTeX e.g. inline math. # Examples ``` use pgfplots::axis::Axis; let mut axis = Axis::new(); axis.
src/axis.rs:149
↓ 3 callersMethodset_y_label
Set the label of the *y* axis. This can be valid LaTeX e.g. inline math. # Examples ``` use pgfplots::axis::Axis; let mut axis = Axis::new(); axis.
src/axis.rs:162
↓ 1 callersFunctionsnowflake_iter
Stolen from plotters crate example
examples/snowflake.rs:37
↓ 1 callersMethodstandalone_string
Return a [`String`] with valid LaTeX code that generates a standalone PDF with the picture environment. # Note Passing this string directly to e.g.
src/lib.rs:228
↓ 1 callersMethodto_pdf
Compile the picture environment into a standalone PDF document. This will create the file `jobname.pdf` in the specified `working_dir` (additional fil
src/lib.rs:258
Functionaxis_add_key
()
src/axis/tests.rs:118
Functionaxis_key_custom_to_string
()
src/axis/tests.rs:55
Functionaxis_key_title_to_string
()
src/axis/tests.rs:47
Functionaxis_key_x_label_to_string
()
src/axis/tests.rs:39
Functionaxis_key_x_mode_to_string
()
src/axis/tests.rs:63
Functionaxis_key_y_label_to_string
()
src/axis/tests.rs:31
Functionaxis_key_y_mode_to_string
()
src/axis/tests.rs:75
Functionaxis_keys_tested
()
src/axis/tests.rs:18
Functionaxis_new
()
src/axis/tests.rs:87
Functionaxis_set_title
()
src/axis/tests.rs:94
Functionaxis_set_x_label
()
src/axis/tests.rs:102
Functionaxis_set_y_label
()
src/axis/tests.rs:110
Functionaxis_to_string
()
src/axis/tests.rs:162
Functioncoordinate_2d_from_long_tuple
()
src/axis/plot/coordinate/tests.rs:13
Functioncoordinate_2d_from_short_tuple
()
src/axis/plot/coordinate/tests.rs:4
Functioncoordinate_2d_to_string
()
src/axis/plot/coordinate/tests.rs:40
Functionerror_character_to_string
()
src/axis/plot/tests.rs:12
Functionerror_direction_to_string
()
src/axis/plot/tests.rs:4
Methodfmt
(&self, f: &mut fmt::Formatter<'_>)
src/lib.rs:112
Methodfmt
(&self, f: &mut fmt::Formatter<'_>)
src/axis.rs:36
Methodfmt
(&self, f: &mut fmt::Formatter<'_>)
src/axis/plot.rs:44
Methodfmt
(&self, f: &mut fmt::Formatter<'_>)
src/axis/plot/coordinate.rs:28
Methodfrom
(axis: Axis)
src/lib.rs:159
Methodfrom
(plot: Plot2D)
src/axis.rs:105
Methodfrom
Conversion from an `(x,y)` tuple into a two-dimensional coordinate. # Examples ``` use pgfplots::axis::plot::coordinate::Coordinate2D; let point: C
src/axis/plot/coordinate.rs:56
Functionmain
()
examples/fitted_line.rs:7
Functionmain
()
examples/snowflake.rs:6
Functionmain
()
examples/rectangle_integration.rs:6
Methodnew
Create a new, empty picture environment. # Examples ``` use pgfplots::Picture; let picture = Picture::new(); ```
src/lib.rs:181
Methodnew
Creates a new, empty axis environment. # Examples ``` use pgfplots::axis::Axis; let axis = Axis::new(); ```
src/axis.rs:122
Methodnew
Creates a new, empty two-dimensional plot. # Examples ``` use pgfplots::axis::plot::Plot2D; let plot = Plot2D::new(); ```
src/axis/plot.rs:122
Functionpicture_add_key
()
src/tests.rs:35
Functionpicture_key_custom_to_string
()
src/tests.rs:20
Functionpicture_keys_tested
()
src/tests.rs:12
Functionpicture_new
()
src/tests.rs:28
Functionpicture_standalone_string
()
src/tests.rs:48
Functionpicture_to_string
()
src/tests.rs:62
Functionplot_2d_add_key
()
src/axis/plot/tests.rs:262
Functionplot_2d_new
()
src/axis/plot/tests.rs:255
Functionplot_2d_to_string
()
src/axis/plot/tests.rs:316
Functionplot_key_custom_to_string
()
src/axis/plot/tests.rs:139
Functionplot_key_type_2d_to_string
()
src/axis/plot/tests.rs:147
Functionplot_key_x_error_direction_to_string
()
src/axis/plot/tests.rs:203
Functionplot_key_x_error_to_string
()
src/axis/plot/tests.rs:191
Functionplot_key_y_error_direction_to_string
()
src/axis/plot/tests.rs:235
Functionplot_key_y_error_to_string
()
src/axis/plot/tests.rs:223
Functionplot_keys_tested
()
src/axis/plot/tests.rs:126
Functionplot_type2d_tested
()
src/axis/plot/tests.rs:31
Methodrandom_jobname
Return a random string that can be used as a `jobname` to compile a [`Picture`] in `std::env::temp_dir()`. This should not overwrite any existing file
src/lib.rs:350
Functionscale_to_string
()
src/axis/tests.rs:5
Functiontype_2d_to_string
()
src/axis/plot/tests.rs:57