Skip to content
Advertisement

Delete empty dataframes from a list with dataframes

This is a list of dataframes.

JavaScript

I am trying to delete the empty dataframes from the above list that contains dataframes.

Here is what I have tried:

JavaScript

which gives:

JavaScript

Important:It needs to store them in the data variable as well

Advertisement

Answer

We ca use filter

JavaScript

or list comprehension

JavaScript

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement