We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
rbook/bookdown/02.04-mechanics.Rmd
Line 859 in 8aeeb95
According to the PDF version this should result in
> print.formula( my.formula ) # print it out using the print.formula() method blah ~ blah.blah
However the when evaluated this actually returns
print.formula( my.formula ) # print it out using the print.formula() method ## Appears to be deprecated
An example using a non-deprecated generic should be used to replace this
The text was updated successfully, but these errors were encountered:
print.formula is an alias for formula() but it is still there and just not exported for some reason. ``
stats:::print.formula(my.formula) blah ~ blah.blah ``
Sorry, something went wrong.
Merge pull request djnavarro#5 from ekothe/djnavarro-master
39c1a6f
Djnavarro master
No branches or pull requests
rbook/bookdown/02.04-mechanics.Rmd
Line 859 in 8aeeb95
According to the PDF version this should result in
However the when evaluated this actually returns
An example using a non-deprecated generic should be used to replace this
The text was updated successfully, but these errors were encountered: