Created
October 16, 2020 10:49
-
-
Save j03m/5bf8e1fafefff7ecc886ec8e11639bf7 to your computer and use it in GitHub Desktop.
plt matplotlib multiple y values single x axis with figure size
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plt.figure(figsize=(50,50)) | |
ax = plt.plot(df1['close'], color='b', label='close') | |
ax2 = plt.gca().twinx() | |
plt.plot(df1['HT_TRENDMODE'], color='r', label='close') | |
plt.legend() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment