Skip to content

Instantly share code, notes, and snippets.

View fccoelho's full-sized avatar
🏠
Working from home

Flávio Codeço Coelho fccoelho

🏠
Working from home
View GitHub Profile
@fccoelho
fccoelho / Classifica_Artigos.ipynb
Created July 17, 2014 19:14
experimentos de classificação de artigos do MediaCLoud
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fccoelho
fccoelho / benchMongoDict.py
Created May 26, 2015 12:45
MongoDict benchmark
"""
In [16]: %timeit dic_normal(1000)
1000 loops, best of 3: 802 µs per loop
In [17]: %timeit dic_mongo(1000)
1 loops, best of 3: 308 ms per loop
In [18]: dic2 = dic_normal(1000)
In [19]: %time col.insert(dic2)
CPU times: user 15.1 ms, sys: 600 µs, total: 15.7 ms
Wall time: 22.1 ms
"""
@fccoelho
fccoelho / PyDSTool_benchmark.ipynb
Last active August 29, 2015 14:23
Benchmark of ODE solvers
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fccoelho
fccoelho / Spark logistic regression.ipynb
Created July 9, 2015 12:20
PySpark Logistic regression
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fccoelho
fccoelho / peakdetect.py
Created February 11, 2010 13:46 — forked from endolith/peakdet.m
simple peak detection code
import sys
from numpy import NaN, Inf, arange, isscalar, array
def peakdet(v, delta, x = None):
"""
Converted from MATLAB script at http://billauer.co.il/peakdet.html
Returns two arrays
function [maxtab, mintab]=peakdet(v, delta, x)
"""
MinMax peak detector
Originally from:
https://fedorahosted.org/pydarn/export/dfbf33a36aab3f576ec585f66b6bc99dfd5750d7/peakdetect/MinMax.py
"""
import sys, copy, math
import numpy
@fccoelho
fccoelho / ode_tut.py
Created November 4, 2011 13:03
Exemplos de integração numérica de sistemas de equações diferenciais ordinárias.
# coding:utf8
"""
Exemplos de integração numérica de sistemas de equações diferenciais ordinárias.
ode : interface para a coleção de solvers VODE http://www.netlib.org/ode
Flávio Codeço Coelho
Licença: GPL
"""
@fccoelho
fccoelho / mongodb-upstart.sh
Created March 8, 2012 13:45 — forked from onedesign/mongodb-upstart.sh
Ubuntu upstart script for MongoDB with automatic repair
# Ubuntu upstart file at /etc/init/mongodb.conf
pre-start script
mkdir -p /var/lib/mongodb/
mkdir -p /var/log/mongodb/
end script
start on runlevel [2345]
stop on runlevel [06]
@fccoelho
fccoelho / test_virtualenvmagic.py
Created June 5, 2012 11:04 — forked from minrk/shebang.py
Prototype of an extension to provide acess to virtual python environment on an IPython notebook cell
# -*- coding: utf-8 -*-
"""
Tests for the virtualenvmagic extension
Author: Flávio Codeço Coelho - @fccoelho
"""
import os
import nose.tools as nt
@fccoelho
fccoelho / choropleth.js
Created November 27, 2012 23:09
D3.js map choroplethmap
<script src="/js/d3.v2.js"></script>
<link type="text/css" rel="stylesheet" href="/css/colorbrewer/colorbrewer.css">
<style type="text/css">
svg {
background: #eee;
width: 960px;
height: 500px;
}
#polygons path {
stroke: #fff;