Displaying 4 results from an estimated 4 matches for "jdataframebuilder".
2016 Jan 14
2
JDataFrame API
...DataFrame API -- which is used to convert data into JSON which then
can be converted into a data frame in R.
Here's the project page:
https://coherentlogic.com/middleware-development/jdataframe/
and here's a partial example which demonstrates what the API looks like:
String result = new JDataFrameBuilder()
.addColumn("Code", new Object[] {"WV", "VA", })
.addColumn("Description", new Object[] {"West Virginia", "Virginia"})
.toJson();
and in R script we would need to do this:
temp <- RJSONIO::fromJSON(json)
tempDF <- as.d...
2016 Jan 15
2
JDataFrame API
...can be converted into a data frame in R.
>>
>> Here's the project page:
>>
>> https://coherentlogic.com/middleware-development/jdataframe/
>>
>> and here's a partial example which demonstrates what the API looks like:
>>
>> String result = new JDataFrameBuilder()
>> .addColumn("Code", new Object[] {"WV", "VA", })
>> .addColumn("Description", new Object[] {"West Virginia", "Virginia"})
>> .toJson();
>>
>> and in R script we would need to do this:
>>
>...
2016 Jan 15
0
JDataFrame API
...a into JSON which then
> can be converted into a data frame in R.
>
> Here's the project page:
>
> https://coherentlogic.com/middleware-development/jdataframe/
>
> and here's a partial example which demonstrates what the API looks like:
>
> String result = new JDataFrameBuilder()
> .addColumn("Code", new Object[] {"WV", "VA", })
> .addColumn("Description", new Object[] {"West Virginia", "Virginia"})
> .toJson();
>
> and in R script we would need to do this:
>
> temp <- RJSONIO::...
2016 Jan 15
0
JDataFrame API
...n R.
>>>
>>> Here's the project page:
>>>
>>> https://coherentlogic.com/middleware-development/jdataframe/
>>>
>>> and here's a partial example which demonstrates what the API looks like:
>>>
>>> String result = new JDataFrameBuilder()
>>> .addColumn("Code", new Object[] {"WV", "VA", })
>>> .addColumn("Description", new Object[] {"West Virginia", "Virginia"})
>>> .toJson();
>>>
>>> and in R script we would need to do...