Differences between revisions 12 and 14 (spanning 2 versions)
Revision 12 as of 2019-04-06 06:33:37
Size: 10742
Editor: chapoton
Comment: py3 print
Revision 14 as of 2020-06-01 17:32:13
Size: 10749
Editor: kcrisman
Comment:
Deletions are marked like this. Additions are marked like this.
Line 121: Line 121:
     k = Y.keys(); k.sort()      k = list(Y); k.sort()
Line 133: Line 133:
While support for R is rapidly improving, scipy.stats has a lot of useful stuff too. This only scratches the surface. One can do many things with scipy.stats. This only scratches the surface.
Line 136: Line 136:
import urllib2 as U import urllib.request as U
Line 141: Line 141:
co2data = [d.decode() for d in co2bytedata]

Sage Interactions - Web applications

goto interact main page

Stock Market data, fetched from Yahoo and Google FIXME

by William Stein

(Need to fix plotting warnings as well as some stocks give index errors (like bsc, etc.)

stocks.png

CO2 data plot, fetched from NOAA

by Marshall Hampton

One can do many things with scipy.stats. This only scratches the surface.

co2c.png

Arctic sea ice extent data plot, fetched from NSIDC

by Marshall Hampton

seaice.png

Pie Chart from the Google Chart API

by Harald Schilly

interact_with_google_chart_api.png

interact/web (last edited 2020-06-01 18:37:46 by kcrisman)