paste_paths | R Documentation |
Concatenates two strings to a path string correctly.
paste_paths(path1 = "w", path2 = "d", os = "LiNuX")
path1 |
A a character vector of length one specifying the left hand part of the resulting path. |
path2 |
A a character vector of length one specifying the right hand part of the resulting path. |
os |
A a character vector of length one specifying the operating system you're operating on: windows or linux. |
A a character vector of length one containing the concatenated path.
paste_paths(path1 = "data", path2 = "patients")
paste_paths(path1 = "/data", path2 = "patients")
paste_paths(path1 = "/data/", path2 = "patients")
paste_paths(path1 = "/data", path2 = "/patients")
paste_paths(path1 = "/data/", path2 = "/patients/")
paste_paths(path1 = "data", path2 = "patients", os = "windows")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.