Skip to content

Instantly share code, notes, and snippets.

View jvrsgsty's full-sized avatar

jvrsgsty

  • Stanford University
  • Stanford, CA
View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jvrsgsty
jvrsgsty / Lista 6.ipynb
Created November 14, 2013 04:49
Lista 6 de Estadística Aplicada II
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jvrsgsty
jvrsgsty / Modelos Lineales.ipynb
Last active December 28, 2015 08:49
Modelos Lineales
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jvrsgsty
jvrsgsty / Lista 5.ipynb
Last active December 29, 2015 21:09
Lista 5 de Estadística Aplicada II
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jvrsgsty
jvrsgsty / Lista 9.ipynb
Last active December 29, 2015 23:29
Lista 9 de Estadística Aplicada II
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
# -*- coding: utf-8 -*-
# Javier Sagastuy
# Last revision: Feb 21, 2014
import numpy as np
import matplotlib.pyplot as plt
import scipy.stats as stats
from statsmodels.stats.anova import anova_lm
import statsmodels.formula.api as sm
@jvrsgsty
jvrsgsty / Lista 2 (rlm).ipynb
Last active August 29, 2015 13:56
Lista 2 (rlm)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jvrsgsty
jvrsgsty / Lista 4 (rls).ipynb
Created February 28, 2014 01:09
Lista 4 (rls)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jvrsgsty
jvrsgsty / fibonacci.py
Created March 12, 2014 16:16
Ejemplos Python 1
import numpy as np
import optparse
import time
def fibo(n):
if n<= 1:
return n
return fibo(n-1)+fibo(n-2)
def fiboTD(n, tabla):
@jvrsgsty
jvrsgsty / Browse.oz
Created March 23, 2014 18:57
Oz Tutorial
{Browse 'Hello World'}
declare W H
{Browse foo(width:W height:H surface:thread W*H end)}
W=3
H=5