All Projects → johnmyleswhite → Dataframesio.jl

johnmyleswhite / Dataframesio.jl

Advanced import/export tools for DataFrames: Stata, SPSS, Excel, JSON

Programming Languages

julia
2034 projects

DataFramesIO.jl

Wraps libraries for reading foreign file formats:

  • Evan Miller's Stata, SPSS, ... reader
  • Avik Sengupta's Excel reader
  • JSON input/output

Usage Example

using DataFrames
using DataFramesIO

s =  """[{"id":1, "val":5.5}, {"id":2, "val": 6.6}]"""

df = json2df(s)
json = df2json(df)
df2 = json2df(json)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].