10741
Comment:
|
10753
|
Deletions are marked like this. | Additions are marked like this. |
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 140: | Line 140: |
co2data = U.urlopen('ftp://ftp.cmdl.noaa.gov/ccg/co2/trends/co2_mm_mlo.txt').readlines() | co2bytedata = U.urlopen('ftp://ftp.cmdl.noaa.gov/ccg/co2/trends/co2_mm_mlo.txt').readlines() co2data = [d.decode() for d in co2bytedata] |
Sage Interactions - Web applications
goto interact main page
Contents
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.)
CO2 data plot, fetched from NOAA
by Marshall Hampton
One can do many things with scipy.stats. This only scratches the surface.
Arctic sea ice extent data plot, fetched from NSIDC
by Marshall Hampton
Pie Chart from the Google Chart API
by Harald Schilly