rpy2.rinteractive:
install process: Library location for some of the R installations
a work to a limited extend
Environment.keys() to list the keys
classes robjects.vectors.POSIXlt and robjects.vectors.POSIXlt to represent vectors of R dates/time
packages.get_packagepath() to get the path to an R package
module rpy2.robjects.help to expose the R help system to Python
Metaclass utilities in rpy2.robjects.methods, allowing to reflect automatically R S4 classes as Python classes.
rpy2.robjects.vectors.FactorVector.iter_labels() to iterate over the labels
rpy2.robjects.vectors.ListVector to represent R lists.
Constructor for rpy2.robjects.vectors.ListVector and rpy2.robjects.vectors.DataFrame accept any iterable at the condition that the elements iterated through also valid subscripts for it (e.g., given an iterable v, the following is valid:
x[k] for x in v
No user-visible change. Win32-specific additions to the C module were made to compile it.
process_revents(), a Wrapper for R_ProcessEvents (# suggested by June Kim to help with issues related to interactive display on win32), and for R_RunHandlers on UNIX-like systems (# patch by Nathaniel Smith).
All callbacks are getting a get<callback> to complement the set<callback>. (# Patch by Nathaniel Smith)
(# from a patch by Nathaniel Smith)