Description Usage Arguments Value See Also Examples
Some additional details about this S4 generic and its The extra blank line between this section and the title is critical for roxygen2 to differentiate the title from the description section.
1 | helloworld(x, y, ...)
|
x |
Description of |
y |
Description of |
... |
Additional argument list that might not ever be used. |
A helloworld-ified argument. Oh, you'll see.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | helloworld("thisismystring")
helloworld(char2helloworld("thisismystring"))
helloworld(matrix(0,3,3))
helloworld(c(0,0,0))
helloworld(list(0,0,0))
helloworld(c(0,0,0))
helloworld(function(x){print(x)})
helloworld(integer(0))
helloworld(array(0))
mychar <- char2helloworld(c("this","is","my","character","vector"))
helloworld(mychar)
mychar
print(mychar)
show(mychar)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.