Skip to content

Instantly share code, notes, and snippets.

View pchaigno's full-sized avatar

Paul Chaignon pchaigno

View GitHub Profile
enigma
=======
```{r, eval=TRUE, echo=FALSE}
opts_chunk$set(fig.width=8, fig.pos="h", fig.path="inst/assets/figure/")
```
[![Build Status](https://api.travis-ci.org/rOpenGov/enigma.png)](https://travis-ci.org/rOpenGov/enigma)
**An R client for [Enigma.io](https://app.enigma.io/)**

enigma

opts_chunk$set(fig.width=8, fig.pos="h", fig.path="inst/assets/figure/")

Build Status An R client for Enigma.io Enigma holds government data and provides a really nice set of APIs for data, metadata, and stats on each of the datasets. That is, you can request a dataset itself, metadata on the dataset, and summary statistics on the columns of each dataset.

enigma info

@pchaigno
pchaigno / execution_time.c
Last active August 29, 2015 13:57
Execution time computation on yacc
#include <time.h>
clock_t begin, end;
double time_spent;
begin = clock();
yyin=fp;
yyparse();
fclose(fp);