Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 681 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 681 Bytes

Noosphere.jl

Library for accessing the Global Conciousness Project data in Julia.

Running (currently v0.1 is not a package)

  # create new Params object with time period
  params = Params(2021, 8, 1, "00:00:00", "00:10:00", true)
  
  # get results
  res = get(params)

  # do something with header ...
  println(header.eggs_reporting)

  # do something with results dataframe ...
  for row in eachrow(res.data[3:end])
    println(row)
  end

  # output sample plot
  saveplot(res)

Output plot (using PlotlyJS)

plot