This repository was archived by the owner on Jun 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmodule_help.Rd
78 lines (64 loc) · 1.7 KB
/
module_help.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/install.R
\name{module_help}
\alias{module_help}
\title{Get help for outsider modules}
\usage{
module_help(repo, fname = NULL)
}
\arguments{
\item{repo}{Module repo}
\item{fname}{Function name}
}
\description{
Look up help files for specific outsider module functions or
whole modules.
}
\examples{
library(outsider)
if (is_outsider_ready()) {
# simplest repo
repo <- 'dombennett/om..hello.world'
# is module_installed?
if (is_module_installed(repo = repo)) {
# get help for package
module_help(repo = repo)
# list functions available
module_functions(repo = repo)
# import
hello_world <- module_import(fname = 'hello_world', repo = repo)
# get help for function
module_help(repo = repo, fname = 'hello_world')
# also works
?hello_world
# run function
hello_world()
# change verbosity settings
# print nothing to console
verbosity_set(show_program = FALSE, show_docker = FALSE)
hello_world()
# print everything to console
verbosity_set(show_program = TRUE, show_docker = TRUE)
hello_world()
# write program output to a file
log_file <- tempfile()
verbosity_set(show_program = log_file, show_docker = FALSE)
hello_world()
(readLines(con = log_file))
# Clean up
file.remove(log_file)
}
}
}
\seealso{
Other public:
\code{\link{is_module_installed}()},
\code{\link{module_details}()},
\code{\link{module_functions}()},
\code{\link{module_import}()},
\code{\link{module_installed}()},
\code{\link{module_install}()},
\code{\link{module_search}()},
\code{\link{module_uninstall}()}
}
\concept{public}