- Log on to the WebMoira interface. You will need your MIT personal certificate set up correctly.
- Click this button.
- Enjoy.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
# Let's generate our different trials data | |
# and save to rds | |
test_if_sameness <- function(size_of_group) { | |
tibble(person_id = 1:size_of_group) %>% | |
mutate(birthday = sample(1:365, n(), replace = T)) %>% | |
mutate(other_dates = list(rename(., person_id1 = person_id, | |
birthday1 = birthday))) %>% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Efficient fuzzy match of two data frames by one common column | |
library(dplyr) | |
library(fuzzyjoin) | |
library(stringdist) | |
eff_fuzzy_match<-function(data_frame_A, | |
data_frame_B, | |
by_what, | |
choose_p = 0.1, | |
choose_max_dist = 0.4, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Retrieve intraday stock data from Google Finance. | |
""" | |
import csv | |
import datetime | |
import re | |
import pandas as pd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#NoEnv | |
/* | |
SimplePing | |
========== | |
AHK library providing a variety of ICMP pinging-related functionality. | |
Examples | |
-------- |