| safer_partialmatch | R Documentation | 
The safer_partialmatch() function simply calls the following:
options( warnPartialMatchDollar = TRUE, warnPartialMatchArgs = TRUE, warnPartialMatchAttr = TRUE )
Thus it forces 'R' to give a warning when partial matching occurs when using
the dollar ($) operator,
or when other forms of partial matching occurs. 
The safer_partialmatch() function
is intended for when running R interactively
(see interactive). 
 
safer_partialmatch()
Sets the options. Returns nothing. 
tinycodet_safer
interactive()
safer_partialmatch()
data(iris)
head(iris)
iris$Sepal.Length <- iris$Sepal.Length^2
head(iris)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.