show_dplyr | R Documentation |
show_dplyr
takes a SQL SELECT
statement and prints
equivalent dplyr code
show_dplyr(data, sql)
data |
a data frame or data frame-like object (optional) |
sql |
a character string containing a SQL |
For more details, see query
. Instead of running the
dplyr code like query
does, show_dplyr
prints the dplyr code.
In function calls in the printed code, long lists of arguments may be
truncated and appended with ...
.
query
library(dplyr) library(nycflights13) query <- "SELECT origin, dest, COUNT(flight) AS num_flts, round(AVG(distance)) AS dist, round(AVG(arr_delay)) AS avg_delay FROM flights WHERE distance BETWEEN 200 AND 300 AND air_time IS NOT NULL GROUP BY origin, dest HAVING num_flts > 5000 ORDER BY num_flts DESC, avg_delay DESC LIMIT 100;" show_dplyr(query)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.