File: r-py-conversion.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 (25 lines) | stat: -rw-r--r-- 647 bytes parent folder | download | duplicates (3)
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/conversion.R
\name{r-py-conversion}
\alias{r-py-conversion}
\alias{r_to_py}
\alias{py_to_r}
\title{Convert between Python and R objects}
\usage{
r_to_py(x, convert = FALSE)

py_to_r(x)
}
\arguments{
\item{x}{A Python object.}

\item{convert}{Boolean; should Python objects be automatically converted
to their \R equivalent? If set to \code{FALSE}, you can still manually convert
Python objects to \R via the \code{\link[=py_to_r]{py_to_r()}} function.}
}
\value{
An \R object, as converted from the Python object.
}
\description{
Convert between Python and R objects
}