import tkinter
import pandas_profiling #added 1
import matplotlib
matplotlib.use('TkAgg') #added 2
import matplotlib.pyplot as plt
import numpy as np
def function_1(x):
return 0.01 * x ** 2 + 0.1 * x
x = np.arange(0.0, 10.0, 0.1)
y = function_1(x)
plt.xlabel("x")
plt.ylabel("f(x)")
plt.plot(x,y)
plt.show()