I have list of dataframes and some are empty, how can I remove these?
$`S566X7221`
[1] V1 V2 V3 V4 V5 V6 V7 V8 V9 V10 V11 V12 V13 V14 V15 V16 V17 V18 V19 V20 V21 V22 V23 V24 V25 V26
<0 rows> (or 0-length row.names)
I have tried these, but non of them work
x[lapply(x,length)>0]
Filter(length, x)