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
It would be great to be able to run only the selected parts of the code.
This can be useful for a number of reasons. For example, you may look at mtcars to see what other variables it has without deleting all the other codes. You may want to run only plot(fit) without displaying summary(fit) without removing summary(fit) from the console.
fit = lm(mpg ~ am, data = mtcars)
summary(fit)
plot(fit)
This is possible in quarto-webr, and I found myself (and students) using this feature a lot when I teach.
The text was updated successfully, but these errors were encountered:
It would be great to be able to run only the selected parts of the code.
This can be useful for a number of reasons. For example, you may look at
mtcars
to see what other variables it has without deleting all the other codes. You may want to run onlyplot(fit)
without displayingsummary(fit)
without removingsummary(fit)
from the console.This is possible in quarto-webr, and I found myself (and students) using this feature a lot when I teach.
The text was updated successfully, but these errors were encountered: