Skip to content

Instantly share code, notes, and snippets.

@BroaderImpact
BroaderImpact / ds-alg.ipynb
Created September 25, 2022 22:06
Python Data Structures and Algorithms
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@BroaderImpact
BroaderImpact / BRR_final.ipynb
Last active February 18, 2023 17:01
BRR Data Analysis
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@BroaderImpact
BroaderImpact / sample.ipynb
Last active February 16, 2023 23:02
NDWA sample
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@BroaderImpact
BroaderImpact / README.md
Last active February 18, 2023 16:49
ML Model Selection

GitHub contributors GitHub issues GitHub Packagist Stars

ml-model-selection

Easy python script for determining which machine learning model to use.

Installation

@BroaderImpact
BroaderImpact / EDA.md
Last active February 18, 2023 17:35
Exploratory Data Analysis

GitHub contributors GitHub issues GitHub Packagist Stars GitHub code size in bytes

Exploratory Data Analysis

Automated python script for running preliminary exploratory data analysis on csv input.

@BroaderImpact
BroaderImpact / iic.md
Last active February 18, 2023 17:52
Assembling Geospatial Data for Interactive Map of Organizations

Assembling Geospatial Data for Interactive Map of Organizations

Coordinating the work of a coalition is difficult on a local level. The problem is further compounded for statewide and national coordination. The need for clear, concise visualization of organizations committed to the cause of IIC was presented by a member organization.

import folium

# Create a map object
map = folium.Map(location=[37.0902, -95.7129], zoom_start=4)
@BroaderImpact
BroaderImpact / lipid.ipynb
Last active February 19, 2023 19:04
Lipidomic Analysis Workflow Using LipidR
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@BroaderImpact
BroaderImpact / pipeline.py
Created February 18, 2023 21:33
GCP Data Pipeline
# Import the required libraries
import subprocess
import os
# Set the GCS bucket and BigQuery dataset and table names
BUCKET_NAME = "my-bucket"
DATASET_NAME = "my-dataset"
TABLE_NAME = "my-table"
# Set the names for local files
@BroaderImpact
BroaderImpact / Rnaseq.ipynb
Created February 19, 2023 17:43
RNASeq Pipeline in R
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@BroaderImpact
BroaderImpact / PKPD.R
Last active March 19, 2023 21:38
Pipeline for Pharmacokinetics/Pharmacodynamics in R
# Pharmacokinetics
# load necessary packages
library(dplyr)
library(nlme)
library(plotly)
# read in data
data <- read.csv("drug_trial_data.csv")