Several functions using DataFrame.ix which has been removed from Pandas 1.0.0
See original GitHub issuePandas 1.0.0 has removed the DataFrame.ix
indexer. This indexer was being used in several core functions including rebase()
and calc_cagr()
. In all, there are 11 instances of this indexer being used in the core module. Pandas also seems to have become aggressive in their policy of requiring users to update. It would be good to update the indexer to the suggested .iloc
or .loc
, as appropriate.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:2
- Comments:6
Top Results From Across the Web
What's new in 1.0.0 (January 29, 2020) - Pandas
The pandas 1.0 release removed a lot of functionality that was deprecated in previous releases (see below for an overview).
Read more >AttributeError: 'DataFrame' object has no attribute 'ix'
I receive "Location based indexing can only have [integer, integer slice (START point is INCLUDED, END point is EXCLUDED), listlike of integers, ...
Read more >The Pandas DataFrame: Make Working With Data Delightful
In this tutorial, you'll get started with Pandas DataFrames, which are powerful and widely used two-dimensional data structures. You'll learn how to perform ......
Read more >Changelog - dplyr
It has the same interface as group_by() , but returns a rowwise data frame of grouping keys, supplemental with a list-column of data...
Read more >Pandas apply() Function to Single & Multiple Column(s)
For example, let's say we have three columns and would like to apply a function ... Below are quick examples # Using Dataframe.apply()...
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
Hey folks,
But if I look in my
python3.8/site-packages/ffn/core.py
But in master
I see
This code changed happened in August 4 2018 with this commit
But the Pypi package never got updated: https://pypi.org/project/ffn/#history
@JordanPlatts or @pmorissette or any maintainer, can you guys please bump up the version and upload latest ffn to Pypi?
Thanks a lot!
I am busy with work and can’t spend time of bt or ffn. Feel free to fix the issues and I can merge them.