Skip to content

Instantly share code, notes, and snippets.

View prabhasp's full-sized avatar

Prabhas Pokharel prabhasp

View GitHub Profile
@prabhasp
prabhasp / index.html
Last active April 18, 2017 14:12
Nepal Choropleths Example
<!DOCTYPE html>
<!-- saved from url=(0014)about:internet -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>How to make choropleth maps with R</title>
<style type="text/css">
body, td {
@prabhasp
prabhasp / BYFY_YouthLed_Prabhas.csv
Last active March 28, 2017 00:52
Plotting the Projects supported by the UNICEF Innovations Lab
Nr NAME OF THE PROJECT AREA IMPLEMENTATION START IMPLEMENTATION END ADDENDUMS
1 Find your polling Station (finished) Social/Technology 22/11/2010 02/03/2011
2 OSM Handbook (finished) Technology 12/03/2010 31/03/2011
3 Follow The Stars (finished) Social/Arts/Culture 02/01/2011 15/06/2011
4 Our Virtual City on 3D (finished) Technology 02/02/2011 18/04/2011
5 Our Eye (finished) Education/Social 03/03/2011 05/10/2011 15/12/2011
6 Say NO to plastic bags (finished) Environment 03/03/2011 30/05/2011
7 Art Gallery for blind Artists (finished) Social/Arts 15/03/2011 15/04/2011
8 E-career Guidelines Education/Social 28/03/2011 26/04/2012
9 Recycle smART (finished) Environment/Arts 20/04/2011 07/04/2011
@prabhasp
prabhasp / headshot.jpg
Last active January 24, 2017 06:29
Re-color your images, Shepard Fairey-ish style
headshot.jpg
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="pandoc" />
@prabhasp
prabhasp / Preso.Rmd
Created October 31, 2013 14:31
Rmd + Make brownbag
---
title : Two tools for reproducible data work
subtitle :
author : Prabhas Pokharel, Modi Research Group
job :
framework : io2012 # {io2012, html5slides, shower, dzslides, ...}
highlighter : highlight.js # {highlight.js, prettify, highlight}
hitheme : tomorrow #
widgets : [] # {mathjax, quiz, bootstrap}
mode : selfcontained # {standalone, draft}
[
{
"source": "Education_113_ALL_FACILITY_INDICATORS.csv",
"target": "nmis_indicators_education_lga_level_113.R"
},
{
"source": "lgas.csv",
"target": "nmis_indicators_education_lga_level_113.R"
},
{
@prabhasp
prabhasp / _.md
Created June 17, 2013 15:04
pnc-schedules
@prabhasp
prabhasp / _.md
Created June 17, 2013 07:29
pnc-schedules
@prabhasp
prabhasp / index.Rmd
Last active December 14, 2015 22:09
Bamboo Benchmarks
<p><link href="http://kevinburke.bitbucket.org/markdowncss/markdown.css" rel="stylesheet"></link></p>
Analyzing bamboo bechmarks--2013/3/13
=====================================
Please refer to the generating index.Rmd file if you want to look at the code that generated this file. It should be in the same folder as index.html (which you are seeing now); most R code will be hidden for prettiness.
```{r warning=FALSE, message=FALSE, echo=FALSE}
library(lubridate)
library(reshape2)
library(ggplot2)
library(plyr)
# Read in data
@prabhasp
prabhasp / gist:5155863
Created March 13, 2013 20:32
Massaging (a folder full of) NPC xls files into a manageable localities subset
setwd("~/Dropbox/FINAL CONPEDIUM OF LOCALITIES/")
require(gdata)
l <- list.files()
l <- l[which(str_detect(l, "\\.xls"))]
listofdfs <- llply(l, function(fname) {
print(paste("Reading file:", fname))
tryCatch({
d <- read.xls(fname)