You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a folder with 89 tables/files and I am trying to interrogate those tables in pointblank. Is it possible to use a for loop to create an agent and then interrogate all the files at once? Please advise what the best way would be (if any) so that I dont have to create an agent for all the 89 tables. Thank you.
The text was updated successfully, but these errors were encountered:
Applying this function to each data frame can be a single call to lapply(). This produces another list, where each element is the interrogate()-ed agent for each data frame.
So then something like agent_reports[[1]] will give you the agent report for the first data frame.
Once you have a list of agents, you could go even further and stick them all inside a single html div and render that div, to view all reports at once.
I have a folder with 89 tables/files and I am trying to interrogate those tables in pointblank. Is it possible to use a for loop to create an agent and then interrogate all the files at once? Please advise what the best way would be (if any) so that I dont have to create an agent for all the 89 tables. Thank you.
The text was updated successfully, but these errors were encountered: