nameOfClass.python.builtin.type {reticulate}R Documentation

nameOfClass() for Python objects

Description

This generic enables passing a python.builtin.type object as the 2nd argument to base::inherits().

Usage

## S3 method for class 'python.builtin.type'
nameOfClass(x)

Arguments

x

A Python class

Value

A scalar string matching the S3 class of objects constructed from the type.

Examples

## Not run: 
  numpy <- import("numpy")
  x <- r_to_py(array(1:3))
  inherits(x, numpy$ndarray)

## End(Not run)

[Package reticulate version 1.38.0 Index]