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
}
|