I have noticed that a python list containing python scalars is converted to a R vector but a python list containing robjects (vectors of length 1) is converted to a R list. See example below.
Is this a bug? Thanks, Michael from rpy import * set_default_mode(NO_CONVERSION) r.print_(r.c(1,2,3)) #vector r.print_(r.c([1,2,3])) #vector r.print_(r.c(r(1),2,3)) #vector r.print_(r.c([r(1),2,3])) #list ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ rpy-list mailing list rpy-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/rpy-list