slickR with Iframes

library(slickR)

Iframes

Since the carousel can accept any html element we can place iframes in the carousel.

There are times when you may want to put in different DOMs rather than an image in slick.

Using slideType you can specify which DOM is used in the slides.

For example lets put the help Rd files from ggplot2 into a slider using the helper function getHelp.

Dont forget to open the output to a browser to view the iframe contents

Function to fetch help files as HTML


get_help <- function(fn,pkg){
 
  ff <- get('index.search',envir = asNamespace('utils'))(
    topic = fn, 
    paths = find.package(pkg),
    TRUE)
  
  path    <- dirname(ff)
  dirpath <- dirname(path)
  pkgname <- basename(dirpath)
  RdDB    <- file.path(path, pkgname)
  
  paste0(
    utils::capture.output({
      tools::Rd2HTML(
        Rd = get('fetchRdDB', envir = asNamespace('tools'))(RdDB, basename(ff))
      )
    }),
  collapse='\n')
  
}

Retrieve help from stats


help_files <- lapply(
    ls("package:stats",pattern = '^r')[-1],
    get_help,
    pkg = 'stats')

Create IFRAME slick


slickR::slickR(help_files,
               slideType = 'iframe',
               height = 400,
               width='95%') + 
  settings(dots  = TRUE, 
           slidesToShow   = 2, 
           slidesToScroll = 2)
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 10320 would be too long for
#> <!DOCTYPE html><html><head><title>R: The Beta Distribution</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>Beta</td><td style="text-align: right;">R Documentation</td></tr></table>
#> 
#> <h2>The B [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 5654 would be too long for
#> <!DOCTYPE html><html><head><title>R: The Binomial Distribution</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>Binomial</td><td style="text-align: right;">R Documentation</td></tr></table>
#> 
#> <h [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 4256 would be too long for
#> <!DOCTYPE html><html><head><title>R: The Cauchy Distribution</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>Cauchy</td><td style="text-align: right;">R Documentation</td></tr></table>
#> 
#> <h2>Th [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 8996 would be too long for
#> <!DOCTYPE html><html><head><title>R: The (non-central) Chi-Squared Distribution</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>Chisquare</td><td style="text-align: right;">R Documentation</td [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 8157 would be too long for
#> <!DOCTYPE html><html><head><title>R: Manipulate Flat Contingency Tables</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>read.ftable</td><td style="text-align: right;">R Documentation</td></tr> [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 4280 would be too long for
#> <!DOCTYPE html><html><head><title>R: Reorder Levels of a Factor</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>reorder.default</td><td style="text-align: right;">R Documentation</td></tr></ta [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 14330 would be too long for
#> <!DOCTYPE html><html><head><title>R: Reshape Grouped Data</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>reshape</td><td style="text-align: right;">R Documentation</td></tr></table>
#> 
#> <h2>Res [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 4381 would be too long for
#> <!DOCTYPE html><html><head><title>R: Accessing Linear Model Fits</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>lm.summaries</td><td style="text-align: right;">R Documentation</td></tr></tabl [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 4595 would be too long for
#> <!DOCTYPE html><html><head><title>R: The Exponential Distribution</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>Exponential</td><td style="text-align: right;">R Documentation</td></tr></tabl [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 7490 would be too long for
#> <!DOCTYPE html><html><head><title>R: The F Distribution</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>FDist</td><td style="text-align: right;">R Documentation</td></tr></table>
#> 
#> <h2>The F Di [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 9099 would be too long for
#> <!DOCTYPE html><html><head><title>R: The Gamma Distribution</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>GammaDist</td><td style="text-align: right;">R Documentation</td></tr></table>
#> 
#> <h2> [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 4580 would be too long for
#> <!DOCTYPE html><html><head><title>R: The Geometric Distribution</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>Geometric</td><td style="text-align: right;">R Documentation</td></tr></table>
#>  [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 6389 would be too long for
#> <!DOCTYPE html><html><head><title>R: The Hypergeometric Distribution</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>Hypergeometric</td><td style="text-align: right;">R Documentation</td></tr> [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 4837 would be too long for
#> <!DOCTYPE html><html><head><title>R: The Log Normal Distribution</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>Lognormal</td><td style="text-align: right;">R Documentation</td></tr></table> [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 4790 would be too long for
#> <!DOCTYPE html><html><head><title>R: The Logistic Distribution</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>Logistic</td><td style="text-align: right;">R Documentation</td></tr></table>
#> 
#> <h [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 4569 would be too long for
#> <!DOCTYPE html><html><head><title>R: The Multinomial Distribution</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>Multinom</td><td style="text-align: right;">R Documentation</td></tr></table> [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 7644 would be too long for
#> <!DOCTYPE html><html><head><title>R: The Negative Binomial Distribution</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>NegBinomial</td><td style="text-align: right;">R Documentation</td></tr> [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 6405 would be too long for
#> <!DOCTYPE html><html><head><title>R: The Normal Distribution</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>Normal</td><td style="text-align: right;">R Documentation</td></tr></table>
#> 
#> <h2>Th [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 5622 would be too long for
#> <!DOCTYPE html><html><head><title>R: The Poisson Distribution</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>Poisson</td><td style="text-align: right;">R Documentation</td></tr></table>
#> 
#> <h2> [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 4323 would be too long for
#> <!DOCTYPE html><html><head><title>R: Distribution of the Wilcoxon Signed Rank Statistic</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>SignRank</td><td style="text-align: right;">R Documentat [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 5582 would be too long for
#> <!DOCTYPE html><html><head><title>R: Distribution of the Smirnov Statistic</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>Smirnov</td><td style="text-align: right;">R Documentation</td></tr>< [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 10435 would be too long for
#> <!DOCTYPE html><html><head><title>R: Regression Deletion Diagnostics</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>influence.measures</td><td style="text-align: right;">R Documentation</td> [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 10435 would be too long for
#> <!DOCTYPE html><html><head><title>R: Regression Deletion Diagnostics</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>influence.measures</td><td style="text-align: right;">R Documentation</td> [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 8905 would be too long for
#> <!DOCTYPE html><html><head><title>R: The Student t Distribution</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>TDist</td><td style="text-align: right;">R Documentation</td></tr></table>
#> 
#> <h2> [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 4661 would be too long for
#> <!DOCTYPE html><html><head><title>R: The Uniform Distribution</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>Uniform</td><td style="text-align: right;">R Documentation</td></tr></table>
#> 
#> <h2> [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 9528 would be too long for
#> <!DOCTYPE html><html><head><title>R: Running Medians - Robust Scatter Plot Smoothing</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>runmed</td><td style="text-align: right;">R Documentation</ [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 4786 would be too long for
#> <!DOCTYPE html><html><head><title>R: The Weibull Distribution</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>Weibull</td><td style="text-align: right;">R Documentation</td></tr></table>
#> 
#> <h2> [... truncated]
#> Warning in file.info(x, extra_cols = FALSE): expanded path length 6334 would be too long for
#> <!DOCTYPE html><html><head><title>R: Distribution of the Wilcoxon Rank Sum Statistic</title>
#> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
#> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
#> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
#> <script type="text/javascript">
#> const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
#> function processMathHTML() {
#>     var l = document.getElementsByClassName('reqn');
#>     for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
#>     return;
#> }</script>
#> <script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
#>     onload="processMathHTML();"></script>
#> <link rel="stylesheet" type="text/css" href="R.css" />
#> </head><body><div class="container"><main>
#> 
#> <table style="width: 100%;"><tr><td>Wilcoxon</td><td style="text-align: right;">R Documentation [... truncated]