File: eng_python.Rd

package info (click to toggle)
r-cran-reticulate 1.41.0.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,088 kB
  • sloc: cpp: 5,154; python: 620; sh: 13; makefile: 2
file content (83 lines) | stat: -rw-r--r-- 4,625 bytes parent folder | download
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/knitr-engine.R
\name{eng_python}
\alias{eng_python}
\title{A reticulate Engine for Knitr}
\usage{
eng_python(options)
}
\arguments{
\item{options}{Chunk options, as provided by \code{knitr} during chunk execution.}
}
\description{
This provides a \code{reticulate} engine for \code{knitr}, suitable for usage when
attempting to render Python chunks. Using this engine allows for shared state
between Python chunks in a document -- that is, variables defined by one
Python chunk can be used by later Python chunks.
}
\details{
The engine can be activated by setting (for example)

\if{html}{\out{<div class="sourceCode">}}\preformatted{knitr::knit_engines$set(python = reticulate::eng_python)
}\if{html}{\out{</div>}}

Typically, this will be set within a document's setup chunk, or by the
environment requesting that Python chunks be processed by this engine.
Note that \code{knitr} (since version 1.18) will use the \code{reticulate} engine by
default when executing Python chunks within an R Markdown document.
}
\section{Supported \code{knitr} chunk options}{


For most options, reticulate's python engine behaves the same as the default
R engine included in knitr, but they might not support all the same features.
Options in \emph{italic} are equivalent to knitr, but with modified behavior.
\itemize{
\item \emph{\code{eval}} (\code{TRUE}, logical): If \code{TRUE}, all expressions in the chunk are evaluated. If \code{FALSE},
no expression is evaluated. Unlike knitr's R engine, it doesn't support numeric
values indicating the expressions to evaluate.
\item \emph{\code{echo}} (\code{TRUE}, logical): Whether to display the source code in the output document. Unlike
knitr's R engine, it doesn't support numeric values indicating the expressions
to display.
\item \code{results} (\code{'markup'}, character): Controls how to display the text results. Note that this option only
applies to normal text output (not warnings, messages, or errors). The behavior
should be identical to knitr's R engine.
\item \code{collapse} (\code{FALSE}, logical): Whether to, if possible, collapse all the source and output blocks
from one code chunk into a single block (by default, they are written to separate blocks).
This option only applies to Markdown documents.
\item \code{error} (\code{TRUE}, logical): Whether to preserve errors. If \code{FALSE} evaluation stops
on errors. (Note that RMarkdown sets it to \code{FALSE}).
\item \emph{\code{warning}} (\code{TRUE}, logical): Whether to preserve warnings in the output. If FALSE, all warnings
will be suppressed. Doesn't support indices.
\item \code{include} (\code{TRUE}, logical): Whether to include the chunk output in the output document.
If \code{FALSE}, nothing will be written into the output document, but the code is still
evaluated and plot files are generated if there are any plots in the chunk, so you
can manually insert figures later.
\item \code{dev}: The graphical device to generate plot files. See knitr documentation for
additional information.
\item \code{base.dir} (\code{NULL}; character): An absolute directory under which the plots
are generated.
\item \code{strip.white} (TRUE; logical): Whether to remove blank lines in the beginning
or end of a source code block in the output.
\item \code{dpi} (72; numeric): The DPI (dots per inch) for bitmap devices (dpi * inches = pixels).
\item \code{fig.width}, \code{fig.height} (both are 7; numeric): Width and height of the plot
(in inches), to be used in the graphics device.
\item \code{label}: The chunk label for each chunk is assumed to be unique within the
document. This is especially important for cache and plot filenames, because
these filenames are based on chunk labels. Chunks without labels will be
assigned labels like unnamed-chunk-i, where i is an incremental number.
}
\subsection{Python engine only options}{
\itemize{
\item \strong{\code{jupyter_compat}} (FALSE, logical): If \code{TRUE} then, like in Jupyter notebooks,
only the last expression in the chunk is printed to the output.
\item \strong{\code{out.width.px}}, \strong{\code{out.height.px}} (810, 400, both integers): Width and
height of the plot in the output document, which can be different with its
physical \code{fig.width} and \code{fig.height}, i.e., plots can be scaled in the output
document. Unlike knitr's \code{out.width}, this is always set in pixels.
\item \strong{\code{altair.fig.width}}, \strong{\code{altair.fig.height}}: If set, is used instead of
\code{out.width.px} and \code{out.height.px} when writing Altair charts.
}
}
}