私はパンダを学んでいます。私はデータの辞書を作って、それをDataFrameに変換しました。私はそれを線グラフとしてプロットしました。私はその線グラフを方程式として扱い、入力変数の結果を得る方法を知りましたか?例えばpandas/matplotlibグラフで変数を解く方法
:
import pandas
import matplotlib
import matplotlib.pyplot as plt
graphPoints = {"Number":[1,2,3,5,6],"value": [100.0,85.0,56.4,22.7,6.8]}
mydf = pandas.DataFrame(round1data)
myindexed_df = round1df.set_index('Number')
myindexed_df.plot()
plt.show()
どのように私は、そのグラフに新しい値の結果を得るのですか?すなわち、x = 4の場合、y =ε pandasやmatplotlibでy = plt(x)やそれに類するものがありますか?
ありがとうございます!