ZhongKang97

Results 4 comments of ZhongKang97

> https://drive.google.com/drive/folders/1eG66rmCCOMrQVYaU8FvtJOEsnEEaxYVc?usp=sharing > > These are all the files I have regarding MYNT-S cameras. Thanks for your sharing!

using code ` pandas._libs.lib import *` instead of `from pandas.tslib import NaTType` in the file `/home/.../.local/lib/python3.8/site-packages/qtpandas/views/EditDialogs.py`

next, if there is error :`AttributeError: 'DataFrame' object has no attribute 'ix'` using the `.loc` function instead, such as `result = self._dataFrame.ix[row, col]` --> `result = self._dataFrame.loc[row, col]`

then,if there is error: AttributeError: 'DataFrame' object has no attribute ` set_value` using the `._set_value` function instead, such as `self._dataFrame.set_value(row, col, value) `-->`self._dataFrame._set_value(row, col, value)`