Unable to use get_dtype_counts() | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Unable to use get_dtype_counts()

cars_data1.get_dtype_counts() Traceback (most recent call last): File "<ipython-input-67-203e149a0348>", line 1, in <module> cars_data1.get_dtype_counts() File "C:\ProgramData\Anaconda3\lib\site-packages\pandas\core\generic.py", line 5274, in __getattr__ return object.__getattribute__(self, name) AttributeError: 'DataFrame' object has no attribute 'get_dtype_counts'

11th Apr 2020, 6:05 PM
Himanshu Jain
Himanshu Jain - avatar
1 Answer
0
Thats it, if you look under class DataFrame, you'll see there was no method defined called "get_dtype_counts". If you add the method, it should get its return value. also it looks like it should be: cars_data1.__getattribute__(dtype_counts)
12th Apr 2020, 4:32 PM
Slick
Slick - avatar