Add parameters for python script, edit method, and add result for problem 7.
This commit is contained in:
parent
8b1c6a5dc8
commit
3539655862
9 changed files with 165 additions and 15 deletions
|
|
@ -4,6 +4,17 @@ import ast
|
|||
import seaborn as sns
|
||||
|
||||
sns.set_theme()
|
||||
params = {
|
||||
"font.family": "Serif",
|
||||
"font.serif": "Roman",
|
||||
"text.usetex": True,
|
||||
"axes.titlesize": "large",
|
||||
"axes.labelsize": "large",
|
||||
"xtick.labelsize": "large",
|
||||
"ytick.labelsize": "large",
|
||||
"legend.fontsize": "medium",
|
||||
}
|
||||
plt.rcParams.update(params)
|
||||
|
||||
def plot():
|
||||
files = [
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue