I have data at some given temperature [30, 40,45...].
Is it possible to generate synthetic data for other temperatures using scikit-learn or any other library?
I am using the existing data and the python code to get the mean plot.
#!/usr/bin/env python
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
from scipy import stats
data = pd.read_csv("trialdata.csv")
# data[(np.abs(stats.zscore(data)) < 3).any(axis=1)]
# print(data)
data = data.groupby("Temp").mean()
data["Temp"] = [30, 40, 45, 50, 55, 60]
print(data)
data.plot.line(y="Er", x="Temp", use_index=True, style="o-")
plt.ylabel("Er")
plt.tight_layout()
plt.show()
I want to generate data for other temperatures eg [35, 65,70] etc for machine learning training set.