Skip to content

cynkra/dd

Repository files navigation

dd

The goal of dd is to provide documentation for DuckDB’s functions, and later also an easy way to test them. It is meant to be used in conjunction with duckplyr and duckdb.

Installation

You can install the development version of dd like so:

pak::pak("cynkra/dd")

Example

library(dd)
dd$acos
#> function(x = DOUBLE) {
#>   stop("DuckDB function acos() is not available in R.")
#> }
#> <bytecode: 0xdeadbeef>
#> <environment: namespace:dd>

help(acos, package = "dd")
DuckDB function acos

Description:

     Computes the arccosine of x.

Arguments:

       x: 'DOUBLE'

Examples:

     ## Not run:
     
     acos(0.5)
     ## End(Not run)

About

All DuckDB functions

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages