How to export from r to excel to a new sheet in a loop? need to create a sheet i=1 in the book, write an iteration, then i=2, etc.
i=1:10
for ( int x ) {
...loop body...
write.xlsx(file="C:/Users/Aigna/Desktop//Данные_итог.xlsx", sheetname = i, tidy(m_logit), append=TRUE)
}
Can you please tell me how to implement it?