Description Usage Arguments See Also Examples
Clear the imports from the pysty environments as well as any functions with those package name(s) from the global enviroment.
1 | clear_imports(..., pos = 1, envir = as.environment(pos))
|
pos |
Where to do the assignment. If no arguments are passed all enviroments will be cleared. |
envir |
The |
... |
Quoted package names to remove from the pysty environments as well as any functions with those package name(s) from the global enviroment. |
1 2 3 4 5 6 7 | ## Not run:
add_imports('import dplyr as dp', 'from lattice import xyplot, qq')
get_imports(); get_imports_functions();ls(pattern='^(qq|xyplot)$')
clear_imports()
get_imports(); get_imports_functions();ls(pattern='^(qq|xyplot)$')
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.