Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The "<a href="http://mirrors.softliste.de/cran/" rel="nofollow noreferrer">sos</a>" package is an excellent resource. It's primary interface is the "<strong>findFn</strong>" command, which accepts a string (your search term) and scans the "function" entries in Johnathan Baron's site search database, and returns the entries that contain the search term in a data frame (of class "findFn").</p> <p>The columns of this data frame are: <strong>Count</strong>, <strong>MaxScore</strong>, <strong>TotalScore</strong>, <strong>Package</strong>, <strong>Function</strong>, <strong>Date</strong>, <strong>Score</strong>, <strong>Description</strong>, and <strong>Link</strong>. Clicking on "Link" in any entry's row will immediately pull up the help page.</p> <p>An example: suppose you wanted to find all convolution filters across all 1800+ R packages. </p> <pre><code>library(sos) cf = findFn("convolve") </code></pre> <p>This query will look the term "convolve", in other words, that doesn't have to be the function name. </p> <p>Keying in "cf" returns an HTML table of all matches found (23 in this case). This table is an HTML rendering of the data frame i mentioned just above. What is particularly convenient is that each column ("Count", "MaxScore", etc.) is sortable by clicking on the column header, so you can view the results by "Score", by "Package Name", etc.</p> <p>(As an aside: when running that exact query, one of the results was the function "panel.tskernel" in a package called "latticeExtra". I was not aware this package had any time series filters in it and i doubt i would have discovered it otherwise.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload