AttributeError: 'DataFrame' object has no attribute 'ix'
See original GitHub issueIn version 1.0.0 of Pandas, Series.ix
and DataFrame.ix
was removed, breaking calmap. See https://pandas.pydata.org/docs/whatsnew/v1.0.0.html
However, this method is still used at https://github.com/martijnvermaat/calmap/blob/83e2a9a0bdc773c9e48e05772fb412ac8deb8bae/calmap/__init__.py#L220
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:9 (3 by maintainers)
Top Results From Across the Web
AttributeError: 'DataFrame' object has no attribute 'ix'
I am getting this error when I try to use the . ix attribute of a pandas data frame to pull out a...
Read more >AttributeError: 'DataFrame' object has no attribute 'ix'
The "AttributeError: 'DataFrame' object has no attribute 'ix'" occurs because the ix indexer has been deprecated and removed. To solve the error, ...
Read more >AttributeError: 'DataFrame' object has no attribute 'ix' [closed]
Just use .iloc instead (for positional indexing) or .loc (if using the values of the index). To read more about loc/ilic/iax/iat, ...
Read more >AttributeError: dataframe' object has no attribute 'ix' ( Solved )
Solution of the dataframe' object has no attribute 'ix' ... There are two ways to solve this attributeError. One is to downgrade the...
Read more >Pandas : AttributeError: 'DataFrame' object has no attribute 'ix'
Pandas : AttributeError : ' DataFrame' object has no attribute 'ix ' [ Beautify Your Computer : https://www.hows.tech/p/recommended.html ] ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi, I also faced this issue, and I found another library,calplot, which says it’s a fork of calmap with some fixes. It works for me.
Hi, if this problem still exists and you’d like to create a PR to fix it please direct it to https://github.com/MarvinT/calmap/ That is the version that gets published to pypi and has received several updates to fix some existing issues.