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
In image_lib.py function cut_out()
Python complained that slice indices must be integers.
Solution: Place int() around both 'top' and 'bot' everywhere in the function.
After implementing the above 2 solutions, everything ran smoothly.
The text was updated successfully, but these errors were encountered:
In wavelength_utils.py function twodfit()
pandas.DataFrame.icol has been deprecated http://pandas.pydata.org/pandas-docs/version/0.19.2/generated/pandas.DataFrame.icol.html.
Solution: Replace .icol(i) with .iloc[:, i]
In image_lib.py function cut_out()
Python complained that slice indices must be integers.
Solution: Place int() around both 'top' and 'bot' everywhere in the function.
After implementing the above 2 solutions, everything ran smoothly.
The text was updated successfully, but these errors were encountered: