Skip to content

Instantly share code, notes, and snippets.

View rtbs-dev's full-sized avatar
💮

Rachael Sexton rtbs-dev

💮
View GitHub Profile
@rtbs-dev
rtbs-dev / nx2gt.py
Last active June 11, 2018 16:43 — forked from bbengfort/nx2gt.py
Convert a networkx to graph-tool graph
import networkx as nx
def nx2gt(nxG):
"""
Converts a networkx graph to a graph-tool graph.
"""
# Phase 0: Create a directed or undirected graph-tool Graph
import graph_tool as gt
gtG = gt.Graph(directed=nxG.is_directed())
@rtbs-dev
rtbs-dev / emt_allocation.ipynb
Last active April 4, 2018 19:44
Virginia Beach EMT Allocation exploration
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rtbs-dev
rtbs-dev / HW7.ipynb
Created November 14, 2017 00:45
Bayes, Kalman, and Sobol
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rtbs-dev
rtbs-dev / HW6.ipynb
Last active November 7, 2017 00:59
GridSearch_and_ParticleFilter
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rtbs-dev
rtbs-dev / HW5-ENME737.ipynb
Created October 13, 2017 22:00
one-class-svm
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rtbs-dev
rtbs-dev / HW3-ENME737.ipynb
Created September 29, 2017 04:43
kNN_robustOLS.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rtbs-dev
rtbs-dev / rank_test.ipynb
Last active September 22, 2017 16:25
rank_test.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rtbs-dev
rtbs-dev / CV_Study.ipynb
Last active June 12, 2018 23:20
NLP Cross-Val Pipe
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rtbs-dev
rtbs-dev / pmml_bayesnet.ipynb
Last active March 24, 2023 16:43
Bayesian Network Models in PyMC3 and NetworkX
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.