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
data { | |
int N; | |
vector[N] read; // Data vectors | |
vector[N] parents; | |
vector[N] ses; | |
vector[N] iq; | |
vector[N] treat; | |
int read_nMiss; // N missing from variables; excluded have no missings | |
int ses_nMiss; |
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 | |
from __future__ import print_function | |
from argparse import ArgumentParser, RawDescriptionHelpFormatter | |
import os.path | |
import subprocess | |
import sys | |
import requests | |
try: |