Skip to content

Instantly share code, notes, and snippets.

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

Nick Anthony nanthony007

🏠
Working from home
View GitHub Profile
@nanthony007
nanthony007 / test2.sas
Last active January 26, 2023 15:55
testing out SAS
proc import datafile="C:\temp\test.csv"
out=shoes
dbms=csv
replace;
getnames=no;
run;
proc print data=work.shoes;
run;
# declare constants
import math
import pandas as pd
import plotly.graph_objects as go
STARBUCKS_ORDER = 2.25
STARBUCKS_REUSABLE = 2.00
REUSABLE_DISCOUNT = 0.10
KEURIG_POT = 79.99
from collections import defaultdict, Counter
from dataclasses import InitVar, dataclass, field
from typing import Union
import enum
class NodeType(enum.Enum):
PATIENT = 1
PRESCRIBER = 2
PHARMACY = 3