-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add XY_7_2 plot #28
Add XY_7_2 plot #28
Conversation
Comparison of plots:
|
Plots/XY/xy_7_2_lg.py
Outdated
|
||
fontsize = 24 | ||
labelsize = 20 | ||
color = "blue" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Although explicit initialization of variables such as fontsize
and labelsize
contribute to the readability of the code since they are used as is in both plots, how about using variables such as color
and linestyle
with immediate values within plot codes instead of explicitly initializing them (because they have changing values for each plot)?
Towards #3