gaussshiroemon

gaussshiroemon

最近の記事

Data Visualization with Python (quick note)

1. MatplotlibMatplotlib import matplotlib.pyplot as pltplt.plot(5,5,'o')plt.show()plt.xlabel('X')plt.ylabel('Y')plt.title('Plotting Example') Pandas dataframe('Name').plot(kind='hist') Read Data into Pandas Dataframe import numpy as np

    • Data Analysis with Python (quick note)

      1. Importing DatasetsYou can download my .ipynb here: Formats for dataset: .csv, .json, .xls Pandas Library: - Read datasets into a data frame # import pandas as pdimport pandas as pd Read data: path = "path of the data file (it can b

    Data Visualization with Python (quick note)