R Tip: Get Out of the Habit of Calling View() Directly
Win-Vector Blog 2018-03-04
Summary:
R tip: get out of the habit of calling View() directly. View() only works correctly in interactive environments, not currently in RMarkdown contexts. It is better to call something else that safely dispatches to View(), or to something else depending if you are in an interactive or non-interactive session. The following code will work interactively, … Continue reading R Tip: Get Out of the Habit of Calling
View()
Directly