Normally when I want to look up a function's documentation in R
, I can just type ?lm
, or to do a search for it among various packages, I can type ??lm
. However, this does not appear to work for infix operators. For example, when I do ?%*%
, I get the following message.
> ?%*%
Error: unexpected SPECIAL in "?%*%"
Is there a way to look up documentation for such functions / operators in general in R
?