Skip to content

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

Notifications You must be signed in to change notification settings

johnmyleswhite/DataFramesIO.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

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)

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages