-
Notifications
You must be signed in to change notification settings - Fork 24
/
README.Rmd
85 lines (57 loc) · 2.52 KB
/
README.Rmd
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
79
80
81
82
83
84
85
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
clipr
=====
[![CRAN status.](https://www.r-pkg.org/badges/version/clipr)](https://www.r-pkg.org/pkg/clipr)
![Downloads, grand total](https://cranlogs.r-pkg.org/badges/grand-total/clipr)
[![R-CMD-check](https://github.com/mdlincoln/clipr/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/mdlincoln/clipr/actions/workflows/R-CMD-check.yaml)
Simple utility functions to read and write from the system clipboards of Windows, OS X, and Unix-like systems (which require either xclip or xsel.)
## Installation
Install from CRAN
```{r, eval = FALSE}
install.packages("clipr")
```
Or try the development version
```{r, eval = FALSE}
remotes::install_github("mdlincoln/clipr")
```
## Usage
clipr is pipe-friendly, and will default to returning the same object that was passed in.
```{r pipe-friendly}
library("clipr")
res <- write_clip(c("Text", "for", "clipboard"))
res
cb <- read_clip()
cb
```
To capture the string that clipr writes to the clipboard, specify `return_new = TRUE`. Character vectors with length > 1 will be collapsed with system-appropriate line breaks, unless otherwise specified
```{r return-new}
cb <- write_clip(c("Text", "for", "clipboard"), return_new = TRUE)
cb
cb <- write_clip(c("Text", "for", "clipboard"), breaks = ", ", return_new = TRUE)
cb
```
`write_clip` also tries to intelligently handle data.frames and matrices, rendering them with `write.table` so that they can be pasted into a spreadsheet like Excel.
```{r tbl}
tbl <- data.frame(a = c(1, 2, 3), b = c(4, 5, 6))
cb <- write_clip(tbl, return_new = TRUE)
cb
```
`read_clip_tbl` will try to parse clipboard contents from spreadsheets into data frames directly.
## Developing with clipr
See the "Developing with clipr" vignette included with this package for advisories on writing code that calls clipr functions.
## Nice uses of clipr
(a non-comprehensive list)
1. [reprex](https://github.com/tidyverse/reprex) by [\@jennybc](https://github.com/jennybc) takes R code on the clipboard and renders a reproducible example from it, ready to then paste on to GitHub, Stack Overflow, or the like.
2. [datapasta](https://github.com/milesmcbain/datapasta) by [\@milesmcbain](https://github.com/milesmcbain) eases the copying and pasting of R objects in and out of different sources (Excel, Google Sheets).
---
[Matthew Lincoln](https://matthewlincoln.net)