Package org.renjin.sexp

Examples of org.renjin.sexp.StringArrayVector


  }
 
  public IntVector newConnection(Connection conn) {
    IntArrayVector.Builder sexp = new IntArrayVector.Builder(1);
    sexp.set(0, installConnection(conn));
    sexp.setAttribute(Symbols.CLASS, new StringArrayVector("connection", conn.getClassName()));
    return sexp.build();
  }
View Full Code Here


  protected SEXP c(double... values) {
    return new DoubleArrayVector(values);
  }
 
  protected SEXP c(String... values) {
    return new StringArrayVector(values);
  }
View Full Code Here

TOP

Related Classes of org.renjin.sexp.StringArrayVector

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.