You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the end of stocker/stocker/predict.py, you are applying multiple functions to plt. As long as the functions return self, you should be able to chain the methods. For example:
Instead of this:
word = 'hello'
word.upper()
word.lower()
print(word)
You could do this:
word = 'hello'
word.upper().lower()
print(word)
This is a weird example, but just an idea.
The text was updated successfully, but these errors were encountered:
At the end of stocker/stocker/predict.py, you are applying multiple functions to plt. As long as the functions return self, you should be able to chain the methods. For example:
Instead of this:
word = 'hello'
word.upper()
word.lower()
print(word)
You could do this:
word = 'hello'
word.upper().lower()
print(word)
This is a weird example, but just an idea.
The text was updated successfully, but these errors were encountered: