I have a embedded lists as follows.
which I get after running this code
dfs <- lapply(mf_sheets, data.frame, stringsAsFactors = FALSE)
dfs
$`DSP BlackRock Equity Fund`
Sr_No Scrip_Name Industry
1 ABC AUTO
2 DEF IT
3 WER Software
$DSP_BlackRockTop100_Equity_Fund
Sr_No Scrip_Name Industry
1 ABC AUTO
2 DEF IT
3 WER Software
I have 17 embedded lists in one lists like above . What I want to do is save all this as seperate dtaframe with list name as dataframe name.
How would I do it in R?