Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exploratory Data Analysis: Use of with() should be accepted #497

Open
erntan opened this issue Mar 15, 2022 · 0 comments
Open

Exploratory Data Analysis: Use of with() should be accepted #497

erntan opened this issue Mar 15, 2022 · 0 comments

Comments

@erntan
Copy link

erntan commented Mar 15, 2022

After learning how to use with to minimize typing, answers using with should be accepted. An example of this is in lesson 5 (Base Plotting):

| Plot airquality$Ozone and airquality$Solar.R and use main to specify the
| title "Ozone and Solar Radiation".

> with(airquality, plot(Ozone, Solar.R, main = "Ozone and Solar Radiation"))

| That's not the answer I was looking for, but try again. Or, type info()
| for more options.

| Type plot(airquality$Ozone, airquality$Solar.R, main = "Ozone and Solar
| Radiation").

> plot(airquality$Ozone, airquality$Solar.R, main = "Ozone and Solar Radiation")

| Great job
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant