1
0
Fork 0

Seaborn dep

main
Jeff Moe 2023-01-29 16:33:06 -07:00
parent 6b86ff53fc
commit 1ff089f675
2 changed files with 7 additions and 2 deletions

View File

@ -28,12 +28,16 @@
# ./polar-plot data/sample.csv
# ./polar-plot data/rtl_power-sample.csv
import numpy as np
import locale
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import sys
import re
import seaborn as sns
import sys
locale.setlocale(locale.LC_ALL, "en_US.utf8")
plt.rcParams['axes.formatter.use_locale'] = True
if __name__ == "__main__":
# Determine what type of file to load to dataframe

View File

@ -1,3 +1,4 @@
matplotlib
pandas
pyqt6
seaborn