search for: freqfeatur

Displaying 1 result from an estimated 1 matches for "freqfeatur".

Did you mean: freqfeatures
2010 Mar 24
0
Trying to create R dataframe with JRI
...hese constructors do not exist in JRI (apparently). They must use a different set of libraries (?) and I am now puzzeled. How can I create a dataframe from Strings and integers? I managed to create RVectors: ArrayList<RVector> vectors = new ArrayList<RVector>(); for (Feature feature : freqFeatures){ RVector rVector = new RVector(); rVector.addAll(feature.getParameters().values()); vectors.add(rVector); } but I miss the next steps. Anybody can give some example code? (JRI source code documentation is mostly abandoned.) What are you guys using? Are there better alternatives for what I...