Closed cacbondioxit closed 10 months ago
Hi Kim,
Thanks for the report. It works fine with Pandas version 1.5.3 on my machine. Could you check if other dependent libraries, like NumPy, are up to date on your end?
Let me know if you need further assistance.
Appreciate it! Navid
Hello Navid, I appreciate your reply.
I just made new conda virtual environment with python 3.8 for running ConvTran.
I installed the dependencies in requirements file there, and... that's it.
I checked my numpy version with np.__version__
. it was 1.24.3, which was same with requirements.txt.
The reason why I reported this issue is here:
When I brought another pandas DataFrame and ran df.series
, it makes same error in another envs.
I googled if pd.DataFrame has attribute 'series' indeed, and it seems like pd.DataFrame has no attribute like 'series'.
So I'm still wondering why it works fine with your machine, and it doesn't with mine.
Let me know if there's something else I should tell you more, I still need help. I should say I appreciate your work again. Thank you.
Hyungyu Kim
Hi again,
Thank you for providing additional details. I believe I've identified the issue. 'series' is not an attribute of the Pandas DataFrame; rather, it represents one of the columns in your DataFrame, possibly from the Ford challenge or HAR datasets.
To access this column, you can use df['series'] instead of df.series to avoid the error. ['series' here denotes a specific column, not a DataFrame attribute].
If you have any further questions or encounter any more issues, feel free to reach out.
Best regards, Navid
Hello Navid,
Now I got what is going on df.series
. I never expected 'series' would be the column name. Thanks for your support!
Hyungyu Kim
Hello,
I appreciate your work. The syntax
df.series
in the sourcecode causes the error in pandas version 1.5.3. It seems that It can be simply fixed but I'm not pretty sure I can fix it right now.Here's my code. I just did import data_loader and used load_ford_data(). and the traceback says that the syntax
df.series
makes error.It looks like just simple problem but I thought It's necessary to report here. Thank you!