question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

AttributeError: 'DataFrame' object has no attribute 'ix'

See original GitHub issue

In 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:closed
  • Created 3 years ago
  • Reactions:2
  • Comments:9 (3 by maintainers)

github_iconTop GitHub Comments

3reactions
AsalJalilvandcommented, May 21, 2020

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.

1reaction
MarvinTcommented, Jul 10, 2021

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.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found