powered by
module_help displays help on a module<U+2019>s objects and functions in much the same way help does for package contents.
module_help
help
module_help(topic, help_type = getOption("help_type", "text"))# ?module$function# help(module$function)
# ?module$function
# help(module$function)
fully-qualified name of the object or function to get help for, in the format module$function
module$function
character string specifying the output format; currently, only 'text' is supported
'text'
# NOT RUN { mod = import('mod') module_help(mod$func) # } # NOT RUN { ?mod$func # } # NOT RUN { help(mod$func) # }
Run the code above in your browser using DataLab