2022-01

python code

データの可視化:散布図の作成

%matplotlibinlineimportpandasaspdimportmatplotlib.pyplotaspltdf=pd.read_csv('./input/jh_heights_weights.csv')men=df[df["...
python code

機械学習 しきい値の発見

まずif構文で判定するプログラムを作るデータが少ない時のしきい値を見つけるimportpandasaspddf=pd.read_csv('./input/data.csv')df.head()先頭5行の表示defshould_re_exam...