importing `pesummary.gw.file.read.read` changes the default format of plots
It seems importing pesummary.gw.file.read.read
changes the default fonts, grid, tick_params etc. of plots. The figures are the plots before and after importing pesummary.gw.file.read.read
.
The scripts to make these figures are
import numpy as np
import matplotlib.pyplot as plt
x = np.arange(10)
plt.plot(x)
plt.xlabel("X")
plt.ylabel("Y")
plt.title("Before importing pesummry")
plt.savefig("no_import.jpg")
import numpy as np
import matplotlib.pyplot as plt
from pesummary.gw.file.read import read
x = np.arange(10)
plt.plot(x)
plt.xlabel("X")
plt.ylabel("Y")
plt.title("After importing pesummry")
plt.savefig("import.jpg")