Python Packages|
∘ Documentation & tutorials ∘ PyPI ∘ GitHub ∘ Paper on the Genie algorithm |
R Packages|
(one of the most often downloaded packages on CRAN) |
|
∘ Documentation & tutorials ∘ CRAN ∘ GitHub ∘ Paper on the Genie algorithm |
R Packages|
(maintained by Barbara Żogała-Siudem) ∘ More info ∘ CRAN ∘ GitHub ∘ Tutorial [CRAN] ∘ Online manual |
|
∘ CRAN ∘ GitHub ∘ Online manual |
|
∘ More info ∘ CRAN ∘ GitHub ∘ Online manual ∘ Paper#1 ∘ Paper#2 |
|
(maintained by Maciej Bartoszuk) |
See comment lines for a detailed description of each dataset.
In R:
airlines <- read.csv("nycflights13_airlines.csv.gz", comment.char="#")
head(airlines)
## carrier name
## 1 9E Endeavor Air Inc.
## 2 AA American Airlines Inc.
## 3 AS Alaska Airlines Inc.
## 4 B6 JetBlue Airways
## 5 DL Delta Air Lines Inc.
## 6 EV ExpressJet Airlines Inc.
In Python:
import pandas as pd
airlines = pd.read_csv("nycflights13_airlines.csv.gz",
comment="#", compression="gzip")
airlines.head()
To print comment lines, call, e.g.:
import gzip
with gzip.open("nycflights13_airlines.csv.gz", "rt") as f:
while True:
x = f.readline().strip()
if not x.startswith("#"): break
print(x)
Licensed under CC-by-SA 3.0; see readme.txt for more details.
Hadley Wickham's nycflights13-0.2.1
(licensed under CC0, gzipped) – on-time data for all flights that departed
NYC (i.e., JFK, LGA, or EWR) in 2013:
All the logs are available at the webpage of the
US Department of Transportation.
Arunkumar Srinivasan’s github repository gives some nice
R code to access the 2014 data.
Hadley Wickham's babynames-0.2.1
(licensed under CC0, gzipped) – US Baby Names 1880-2014:
Hadley Wickham's fueleconomy-0.1
(licensed under CC0, gzipped) – fuel economy data from the EPA, 1985-2015:
Hadley Wickham's nasaweather-0.1
(licensed under GPL-3, gzipped):
The following datasets are included in the datasets package
for GNU R:
RE2 Regular Expressions in R;"If you can implement something, this means you understand it."
Nowadays I develop most of my software with:
I have some past experience in: PHP, Java, Julia, Mathematica, Maxima, HTML/CSS/JavaScript, SAS, Matlab/Scilab, C#, Lisp/Scheme, x86 assembly, Fortran, Visual Basic, VBA, C64 Basic, Pascal, ObjectPascal/Delphi, VHDL, Sinclair (ZX Spectrum) Logo, etc.
Libs: ICU, theano, TensorFlow, boost, OpenMP, MPI, CGAL, Qt, Gtk, sdl, OpenGL, Rcpp, etc.
I've been programming computers since the age of 7. My first computer was the C64. Here's a trace of my 2017 visit in the Berlin Computerspiele Museum: