A minimal working example.
- Place the Jupyter notebook in your Google Drive.
- In Google Drive in your web browser, open the Jupyter notebook with Colaboratory.
- Run the cells in this notebook to mount the drive and practice reading & writing files.
#!/usr/local/bin/python3 | |
""" | |
CS315 Homework 4 through 6: Binary numbers and arithmetic | |
Author: Kelly Sovacool | |
Email: [email protected] | |
Date: 21 Sept. 2017 | |
Updated: 16 Nov. 2017 | |
Usage: | |
./binaryNumber.py | |
./binaryNumber.py human-readable |
A minimal working example.
I hereby claim:
To claim this, I am signing this object:
Kelly studied biology with a minor in computer science at the University of Kentucky. While working as an undergraduate lab assistant, she discovered a passion for applying computer science to answer biological questions. In 2018, Kelly joined the Bioinformatics PhD program at the University of Michigan. She develops computational tools and data analysis pipelines for microbiome research under the mentorship of Pat Schloss. See her personal website for more information: https://sovacool.dev.
#include <cstdio> | |
#include <iostream> | |
#include <string> | |
using namespace std; | |
int main () | |
{ | |
while (true) { //This repeats the program. You close console window manually by clicking "x". |
--- | |
title: "Lab Meeting Code Review 2019-09-30: Visualizing weights of model features" | |
output: html_notebook | |
--- | |
```{r} | |
library(tidyverse) | |
feature_data = readr::read_csv('combined_all_imp_features_non_cor_results_L2_Logistic_Regression.csv') | |
head(feature_data) | |
``` |