RStudio enables a user to invoke ("tear-off") a "Source Window" which displays a data frame, R code, and so on in a separate window from the RStudio panes. I am writing an R script that I want to display multiple data frames across several monitors without the user having to manually "tear-off" a View() pane.
I can invoke a Source Window that appears in the RStudio IDE through as.environment("package:utils")$View
. Such a Source Window is not in a "torn-off" state, however.
Any suggestions on how to invoke a "torn-off" Source Window through an R script running in RStudio?
This question is related to How to use R Studio View() function programmatically / in a package and Make RS View open in a new window automatically