├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── CRAN-RELEASE ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── peRspective.R ├── prsp_score.R ├── prsp_stream.R ├── utils-pipe.R └── utils.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── data ├── prsp_exp_models.rda └── prsp_models.rda ├── docs ├── 404.html ├── LICENSE-text.html ├── LICENSE.html ├── _config.yml ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── images │ ├── .png │ ├── perspective2.png │ └── prsp_stream_output.png ├── index.html ├── index_files │ └── figure-html │ │ ├── unnamed-chunk-10-1.png │ │ ├── unnamed-chunk-11-1.png │ │ ├── unnamed-chunk-12-1.png │ │ ├── unnamed-chunk-13-1.png │ │ ├── unnamed-chunk-15-1.png │ │ └── unnamed-chunk-9-1.png ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml └── reference │ ├── Rplot001.png │ ├── db_append.html │ ├── db_get_data.html │ ├── db_remove.html │ ├── figures │ ├── README-unnamed-chunk-10-1.png │ ├── README-unnamed-chunk-11-1.png │ ├── README-unnamed-chunk-12-1.png │ ├── README-unnamed-chunk-13-1.png │ ├── README-unnamed-chunk-14-1.png │ ├── README-unnamed-chunk-15-1.png │ ├── README-unnamed-chunk-16-1.png │ ├── README-unnamed-chunk-8-1.png │ ├── README-unnamed-chunk-9-1.png │ ├── kittens.jpg │ ├── perspective.png │ └── prsp_stream_output.png │ ├── form_request.html │ ├── index.html │ ├── msg.html │ ├── perspective-package.html │ ├── perspective_api_key.html │ ├── pipe.html │ ├── print_progress.html │ ├── prsp_exp_models.html │ ├── prsp_models.html │ ├── prsp_score.html │ ├── prsp_stream.html │ ├── specify_decimal.html │ └── unnest_scores.html ├── man ├── db_append.Rd ├── db_get_data.Rd ├── db_remove.Rd ├── figures │ ├── README-unnamed-chunk-10-1.png │ ├── README-unnamed-chunk-11-1.png │ ├── README-unnamed-chunk-12-1.png │ ├── README-unnamed-chunk-13-1.png │ ├── README-unnamed-chunk-14-1.png │ ├── README-unnamed-chunk-15-1.png │ ├── README-unnamed-chunk-16-1.png │ ├── README-unnamed-chunk-8-1.png │ ├── README-unnamed-chunk-9-1.png │ ├── kittens.jpg │ ├── perspective.png │ └── prsp_stream_output.png ├── form_request.Rd ├── msg.Rd ├── perspective-package.Rd ├── perspective_api_key.Rd ├── pipe.Rd ├── print_progress.Rd ├── prsp_exp_models.Rd ├── prsp_models.Rd ├── prsp_score.Rd ├── prsp_stream.Rd ├── specify_decimal.Rd └── unnest_scores.Rd ├── peRspective.Rproj ├── revdep ├── README.md ├── checks │ └── libraries.csv ├── cran.md ├── data.sqlite ├── failures.md ├── library │ └── peRspective │ │ ├── new │ │ ├── R6 │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── R6 │ │ │ │ ├── R6.rdb │ │ │ │ └── R6.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── R6.rdb │ │ │ │ ├── R6.rdx │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── logo.png │ │ │ │ │ └── logo.svg │ │ │ │ └── paths.rds │ │ │ └── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ ├── XML │ │ │ ├── COPYRIGHTS │ │ │ ├── DESCRIPTION │ │ │ ├── FAQ.html │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── R │ │ │ │ ├── XML │ │ │ │ ├── XML.rdb │ │ │ │ └── XML.rdx │ │ │ ├── exampleData │ │ │ │ ├── 9003-en.html │ │ │ │ ├── 9003.html │ │ │ │ ├── GNUmakefile │ │ │ │ ├── README │ │ │ │ ├── Rref.xml │ │ │ │ ├── Rsource.xml │ │ │ │ ├── SOAPNamespaces.xml │ │ │ │ ├── StatModel.dtd │ │ │ │ ├── TestInvalid.xml │ │ │ │ ├── allNodeTypes.xml │ │ │ │ ├── author.xml │ │ │ │ ├── author.xsd │ │ │ │ ├── author1.xml │ │ │ │ ├── author2.xml │ │ │ │ ├── author2.xsd │ │ │ │ ├── basic.xml │ │ │ │ ├── book.xml │ │ │ │ ├── boxplot.svg │ │ │ │ ├── branch.xml │ │ │ │ ├── catalog.xml │ │ │ │ ├── cdata.xml │ │ │ │ ├── charts.svg │ │ │ │ ├── cleanNamespace.xml │ │ │ │ ├── content.html │ │ │ │ ├── dataframe.xml │ │ │ │ ├── dot.xml │ │ │ │ ├── dtd.zip │ │ │ │ ├── entity.xml │ │ │ │ ├── entity1.xml │ │ │ │ ├── entity2.xml │ │ │ │ ├── entity3.html │ │ │ │ ├── entity4.xml │ │ │ │ ├── entityValue │ │ │ │ ├── eurofxref-hist.xml.gz │ │ │ │ ├── event.xml │ │ │ │ ├── foo.dtd │ │ │ │ ├── functionTemplate.xml │ │ │ │ ├── generalInfo.xml │ │ │ │ ├── gnumeric.xml │ │ │ │ ├── graph.gxl │ │ │ │ ├── iTunes.plist │ │ │ │ ├── include.xml │ │ │ │ ├── job.xml │ │ │ │ ├── kiva_lender.xml │ │ │ │ ├── largeText.xml │ │ │ │ ├── lists.html │ │ │ │ ├── literate.dtd │ │ │ │ ├── literate.xml │ │ │ │ ├── literate.xsl │ │ │ │ ├── literateFunction.xml │ │ │ │ ├── longitudinalData.xml │ │ │ │ ├── malformed.xml │ │ │ │ ├── mathml.dtd │ │ │ │ ├── mathml.xml │ │ │ │ ├── mathmlFuncCall.xml │ │ │ │ ├── mathmlInt.xml │ │ │ │ ├── mathmlMatrix.xml │ │ │ │ ├── mathmlQuadratic.xml │ │ │ │ ├── mathmlRoot.xml │ │ │ │ ├── mathmlScript.xml │ │ │ │ ├── mathmlSet.xml │ │ │ │ ├── mathmlSimple.xml │ │ │ │ ├── mathmlSphere.xml │ │ │ │ ├── mathmlSums.xml │ │ │ │ ├── matrixMult.xml │ │ │ │ ├── mtcars.xml │ │ │ │ ├── namespaceHandlers.xml │ │ │ │ ├── namespaces.xml │ │ │ │ ├── namespaces1.xml │ │ │ │ ├── namespaces2.xml │ │ │ │ ├── nodes.xml │ │ │ │ ├── nodes1.xml │ │ │ │ ├── nodes2.xml │ │ │ │ ├── nodes3.xml │ │ │ │ ├── nsAttrs.xml │ │ │ │ ├── plist.xml │ │ │ │ ├── raw.xml │ │ │ │ ├── redundantNS.xml │ │ │ │ ├── reparent.xml │ │ │ │ ├── rhelp.xsl │ │ │ │ ├── rxinclude.xml │ │ │ │ ├── same.xml │ │ │ │ ├── setInterval.xml │ │ │ │ ├── simple.plist │ │ │ │ ├── simple.xml │ │ │ │ ├── size.xml │ │ │ │ ├── size1.xml │ │ │ │ ├── size2.xml │ │ │ │ ├── size3.xml │ │ │ │ ├── solr.xml │ │ │ │ ├── something.xml │ │ │ │ ├── svg.xml │ │ │ │ ├── symslines.svg │ │ │ │ ├── tagnames.xml │ │ │ │ ├── test.xml │ │ │ │ ├── test1.xml │ │ │ │ ├── tides.xml │ │ │ │ ├── utf.xml │ │ │ │ ├── vars.xml │ │ │ │ ├── writeRS.S │ │ │ │ ├── writeRS.xml │ │ │ │ ├── xinclude │ │ │ │ │ ├── a.xml │ │ │ │ │ ├── b.xml │ │ │ │ │ ├── c.xml │ │ │ │ │ ├── d.xml │ │ │ │ │ ├── e.xml │ │ │ │ │ ├── simple.xml │ │ │ │ │ └── top.xml │ │ │ │ ├── xpathTest.xml │ │ │ │ ├── xysize.svg │ │ │ │ └── xyz.svg.gz │ │ │ ├── examples │ │ │ │ ├── CIS.R │ │ │ │ ├── DiGIR.R │ │ │ │ ├── GNUmakefile │ │ │ │ ├── HTMLText.R │ │ │ │ ├── README │ │ │ │ ├── Rhelp.xml │ │ │ │ ├── RhelpArchive.xml │ │ │ │ ├── RhelpInfo.xml │ │ │ │ ├── SAXEntity.R │ │ │ │ ├── SSource.dtd │ │ │ │ ├── author.R │ │ │ │ ├── bondYields.R │ │ │ │ ├── bondsTables.R │ │ │ │ ├── catalog.R │ │ │ │ ├── connections.R │ │ │ │ ├── connections1.R │ │ │ │ ├── createTree.R │ │ │ │ ├── createTree1.R │ │ │ │ ├── dataFrameEvent.R │ │ │ │ ├── docbook.R │ │ │ │ ├── ecb.R │ │ │ │ ├── enhancedDataFrame.R │ │ │ │ ├── event.R │ │ │ │ ├── event.S │ │ │ │ ├── eventHandlers.R │ │ │ │ ├── faq.R │ │ │ │ ├── filterDataFrameEvent.R │ │ │ │ ├── foo.html │ │ │ │ ├── formals.xsl │ │ │ │ ├── functionIndex.Sxml │ │ │ │ ├── genericHandlers.R │ │ │ │ ├── generic_file.xml │ │ │ │ ├── getElements.S │ │ │ │ ├── gettingStarted.html │ │ │ │ ├── gettingStarted.xml │ │ │ │ ├── gnumericHandler.R │ │ │ │ ├── hashTree.R │ │ │ │ ├── iTunes.plist │ │ │ │ ├── index.html │ │ │ │ ├── internalNodes.S │ │ │ │ ├── internalXInclude.xml │ │ │ │ ├── itunes.R │ │ │ │ ├── itunes.xsl │ │ │ │ ├── itunesSax.R │ │ │ │ ├── itunesSax1.R │ │ │ │ ├── itunesSax2.R │ │ │ │ ├── mathml.R │ │ │ │ ├── mathmlPlot.R │ │ │ │ ├── metlin.R │ │ │ │ ├── mexico.R │ │ │ │ ├── mexico.xml │ │ │ │ ├── mi1.R │ │ │ │ ├── modified_itunes_sax.R │ │ │ │ ├── namespaces.S │ │ │ │ ├── namespaces1.S │ │ │ │ ├── newNodes.R │ │ │ │ ├── oop.S │ │ │ │ ├── pi.xml │ │ │ │ ├── pmml.R │ │ │ │ ├── prompt.xml │ │ │ │ ├── promptXML.R │ │ │ │ ├── promptXML.Sxml │ │ │ │ ├── rcode.xml │ │ │ │ ├── rcode.xsl │ │ │ │ ├── redirection.R │ │ │ │ ├── reorder.xml │ │ │ │ ├── sbml.xml │ │ │ │ ├── sbmlSAX.S │ │ │ │ ├── schema.xsd │ │ │ │ ├── schemaEg.xml │ │ │ │ ├── schemas.xml │ │ │ │ ├── svg.R │ │ │ │ ├── tags.Sxml │ │ │ │ ├── trademe_cars.R │ │ │ │ ├── valueFilterDataFrameEvent.R │ │ │ │ ├── wordML.R │ │ │ │ ├── writeExamples.S │ │ │ │ ├── xml2tex.Sxml │ │ │ │ ├── xmlSource.R │ │ │ │ ├── xmlTags.xml │ │ │ │ ├── xmlTree.R │ │ │ │ ├── xpath.R │ │ │ │ └── xpath.xml │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── XML.rdb │ │ │ │ ├── XML.rdx │ │ │ │ ├── aliases.rds │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ ├── libs │ │ │ │ ├── i386 │ │ │ │ │ ├── XML.dll │ │ │ │ │ └── symbols.rds │ │ │ │ └── x64 │ │ │ │ │ ├── XML.dll │ │ │ │ │ └── symbols.rds │ │ │ └── scripts │ │ │ │ ├── RSXML.bsh.in │ │ │ │ └── RSXML.csh.in │ │ ├── askpass │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS │ │ │ ├── R │ │ │ │ ├── askpass │ │ │ │ ├── askpass.rdb │ │ │ │ └── askpass.rdx │ │ │ ├── WORDLIST │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── askpass.rdb │ │ │ │ ├── askpass.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ ├── libs │ │ │ │ ├── i386 │ │ │ │ │ ├── askpass.dll │ │ │ │ │ └── symbols.rds │ │ │ │ └── x64 │ │ │ │ │ ├── askpass.dll │ │ │ │ │ └── symbols.rds │ │ │ ├── mac-askpass │ │ │ ├── mac-simplepass │ │ │ ├── win-askpass32.exe │ │ │ └── win-askpass64.exe │ │ ├── cli │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── cli │ │ │ │ ├── cli.rdb │ │ │ │ ├── cli.rdx │ │ │ │ ├── sysdata.rdb │ │ │ │ └── sysdata.rdx │ │ │ ├── examples │ │ │ │ └── apps │ │ │ │ │ ├── news.R │ │ │ │ │ ├── outdated.R │ │ │ │ │ ├── search.R │ │ │ │ │ └── up.R │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── cli.rdb │ │ │ │ ├── cli.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ ├── include │ │ │ │ └── cli │ │ │ │ │ └── progress.h │ │ │ ├── libs │ │ │ │ ├── i386 │ │ │ │ │ ├── cli.dll │ │ │ │ │ └── symbols.rds │ │ │ │ └── x64 │ │ │ │ │ ├── cli.dll │ │ │ │ │ └── symbols.rds │ │ │ ├── logo.txt │ │ │ ├── scripts │ │ │ │ ├── news.R │ │ │ │ ├── outdated.R │ │ │ │ ├── search.R │ │ │ │ └── up.R │ │ │ └── shiny │ │ │ │ ├── along │ │ │ │ └── app.R │ │ │ │ ├── format │ │ │ │ └── app.R │ │ │ │ ├── nested │ │ │ │ └── app.R │ │ │ │ └── simple │ │ │ │ └── app.R │ │ ├── crayon │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── crayon │ │ │ │ ├── crayon.rdb │ │ │ │ └── crayon.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── crayon.rdb │ │ │ │ ├── crayon.rdx │ │ │ │ └── paths.rds │ │ │ └── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ ├── curl │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS │ │ │ ├── R │ │ │ │ ├── curl │ │ │ │ ├── curl.rdb │ │ │ │ ├── curl.rdx │ │ │ │ ├── sysdata.rdb │ │ │ │ └── sysdata.rdx │ │ │ ├── WORDLIST │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ ├── intro.R │ │ │ │ ├── intro.Rmd │ │ │ │ ├── intro.html │ │ │ │ ├── windows.R │ │ │ │ ├── windows.Rmd │ │ │ │ └── windows.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── curl.rdb │ │ │ │ ├── curl.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ ├── i386 │ │ │ │ ├── curl.dll │ │ │ │ └── symbols.rds │ │ │ │ └── x64 │ │ │ │ ├── curl.dll │ │ │ │ └── symbols.rds │ │ ├── data.table │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── data.table │ │ │ │ ├── data.table.rdb │ │ │ │ └── data.table.rdx │ │ │ ├── cc │ │ │ ├── doc │ │ │ │ ├── datatable-benchmarking.Rmd │ │ │ │ ├── datatable-benchmarking.html │ │ │ │ ├── datatable-faq.R │ │ │ │ ├── datatable-faq.Rmd │ │ │ │ ├── datatable-faq.html │ │ │ │ ├── datatable-importing.Rmd │ │ │ │ ├── datatable-importing.html │ │ │ │ ├── datatable-intro.R │ │ │ │ ├── datatable-intro.Rmd │ │ │ │ ├── datatable-intro.html │ │ │ │ ├── datatable-keys-fast-subset.R │ │ │ │ ├── datatable-keys-fast-subset.Rmd │ │ │ │ ├── datatable-keys-fast-subset.html │ │ │ │ ├── datatable-reference-semantics.R │ │ │ │ ├── datatable-reference-semantics.Rmd │ │ │ │ ├── datatable-reference-semantics.html │ │ │ │ ├── datatable-reshape.R │ │ │ │ ├── datatable-reshape.Rmd │ │ │ │ ├── datatable-reshape.html │ │ │ │ ├── datatable-sd-usage.R │ │ │ │ ├── datatable-sd-usage.Rmd │ │ │ │ ├── datatable-sd-usage.html │ │ │ │ ├── datatable-secondary-indices-and-auto-indexing.R │ │ │ │ ├── datatable-secondary-indices-and-auto-indexing.Rmd │ │ │ │ ├── datatable-secondary-indices-and-auto-indexing.html │ │ │ │ └── index.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── data.table.rdb │ │ │ │ ├── data.table.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ ├── include │ │ │ │ └── datatableAPI.h │ │ │ ├── libs │ │ │ │ ├── i386 │ │ │ │ │ ├── datatable.dll │ │ │ │ │ └── symbols.rds │ │ │ │ └── x64 │ │ │ │ │ ├── datatable.dll │ │ │ │ │ └── symbols.rds │ │ │ ├── po │ │ │ │ ├── en@quot │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── R-data.table.mo │ │ │ │ │ │ └── data.table.mo │ │ │ │ └── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── R-data.table.mo │ │ │ │ │ └── data.table.mo │ │ │ └── tests │ │ │ │ ├── 1206FUT.txt.bz2 │ │ │ │ ├── 1680-fread-header-encoding.csv │ │ │ │ ├── 2008head.csv.bz2 │ │ │ │ ├── 530_fread.txt │ │ │ │ ├── 536_fread_fill_1.txt │ │ │ │ ├── 536_fread_fill_2.txt │ │ │ │ ├── 536_fread_fill_3_extreme.txt │ │ │ │ ├── 536_fread_fill_4.txt │ │ │ │ ├── SA2-by-DJZ.csv.gz │ │ │ │ ├── allchar.csv.gz │ │ │ │ ├── alluniquechar.csv.gz │ │ │ │ ├── bad.txt.bz2 │ │ │ │ ├── benchmark.Rraw.bz2 │ │ │ │ ├── ch11b.dat.bz2 │ │ │ │ ├── colnames4096.csv.bz2 │ │ │ │ ├── csvy │ │ │ │ ├── test.csvy │ │ │ │ ├── test_attributes.csvy │ │ │ │ ├── test_comment.csvy │ │ │ │ ├── test_extraneous.csvy │ │ │ │ ├── test_incomplete_header.csvy │ │ │ │ ├── test_missing_type.csvy │ │ │ │ ├── test_override_dec.csvy │ │ │ │ ├── test_override_header.csvy │ │ │ │ ├── test_override_na.csvy │ │ │ │ ├── test_override_quote.csvy │ │ │ │ ├── test_override_sep.csvy │ │ │ │ └── test_skip.csvy │ │ │ │ ├── doublequote_newline.csv │ │ │ │ ├── fillheader.csv.bz2 │ │ │ │ ├── fread_blank.txt │ │ │ │ ├── fread_blank2.txt │ │ │ │ ├── fread_blank3.txt │ │ │ │ ├── fread_line_error.csv.bz2 │ │ │ │ ├── froll.Rraw.bz2 │ │ │ │ ├── gb18030.txt │ │ │ │ ├── genotypes_genome.txt.bz2 │ │ │ │ ├── grr.csv.gz │ │ │ │ ├── isoweek_test.csv.bz2 │ │ │ │ ├── issue_1087_utf8_bom.csv │ │ │ │ ├── issue_1095_fread.txt.bz2 │ │ │ │ ├── issue_1113_fread.txt.bz2 │ │ │ │ ├── issue_1116_fread_few_lines.txt.gz │ │ │ │ ├── issue_1116_fread_few_lines_2.txt.gz │ │ │ │ ├── issue_1164_json.txt │ │ │ │ ├── issue_1330_fread.txt │ │ │ │ ├── issue_1462_fread_quotes.txt.gz │ │ │ │ ├── issue_1573_fill.txt │ │ │ │ ├── issue_2051.csv.gz │ │ │ │ ├── issue_2157_sampling_overlap.txt.gz │ │ │ │ ├── issue_2157_sampling_reached_eof_early.txt.bz2 │ │ │ │ ├── issue_3400_fread.txt │ │ │ │ ├── issue_563_fread.txt │ │ │ │ ├── issue_773_fread.txt │ │ │ │ ├── issue_785_fread.txt.gz │ │ │ │ ├── iterations.txt.bz2 │ │ │ │ ├── melt-warning-1752.tsv.gz │ │ │ │ ├── melt_1754.R.gz │ │ │ │ ├── melt_1754_synth.csv.bz2 │ │ │ │ ├── nafill.Rraw.bz2 │ │ │ │ ├── noquote.csv.gz │ │ │ │ ├── onecol4096.csv.bz2 │ │ │ │ ├── other.Rraw.bz2 │ │ │ │ ├── quoted_multiline.csv.bz2 │ │ │ │ ├── quoted_no_header.csv │ │ │ │ ├── russellCRCRLF.csv │ │ │ │ ├── russellCRLF.csv │ │ │ │ ├── session_aborted_fatal_error.txt.bz2 │ │ │ │ ├── test0.txt.bz2 │ │ │ │ ├── test1372-1.Rdata │ │ │ │ ├── test1372.Rdata │ │ │ │ ├── tests-DESCRIPTION │ │ │ │ ├── tests.Rraw.bz2 │ │ │ │ ├── types.Rraw.bz2 │ │ │ │ ├── unescaped.csv │ │ │ │ ├── utf16be.txt │ │ │ │ ├── utf16le.txt │ │ │ │ └── winallquoted.csv.bz2 │ │ ├── dplyr │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── data.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── dplyr │ │ │ │ ├── dplyr.rdb │ │ │ │ └── dplyr.rdx │ │ │ ├── data │ │ │ │ ├── Rdata.rdb │ │ │ │ ├── Rdata.rds │ │ │ │ └── Rdata.rdx │ │ │ ├── doc │ │ │ │ ├── base.R │ │ │ │ ├── base.Rmd │ │ │ │ ├── base.html │ │ │ │ ├── colwise.R │ │ │ │ ├── colwise.Rmd │ │ │ │ ├── colwise.html │ │ │ │ ├── compatibility.R │ │ │ │ ├── compatibility.Rmd │ │ │ │ ├── compatibility.html │ │ │ │ ├── dplyr.R │ │ │ │ ├── dplyr.Rmd │ │ │ │ ├── dplyr.html │ │ │ │ ├── grouping.R │ │ │ │ ├── grouping.Rmd │ │ │ │ ├── grouping.html │ │ │ │ ├── index.html │ │ │ │ ├── programming.R │ │ │ │ ├── programming.Rmd │ │ │ │ ├── programming.html │ │ │ │ ├── rowwise.R │ │ │ │ ├── rowwise.Rmd │ │ │ │ ├── rowwise.html │ │ │ │ ├── two-table.R │ │ │ │ ├── two-table.Rmd │ │ │ │ ├── two-table.html │ │ │ │ ├── window-functions.R │ │ │ │ ├── window-functions.Rmd │ │ │ │ └── window-functions.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── dplyr.rdb │ │ │ │ ├── dplyr.rdx │ │ │ │ ├── figures │ │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ │ ├── lifecycle-retired.svg │ │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ │ ├── lifecycle-superseded.svg │ │ │ │ │ └── logo.png │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ ├── i386 │ │ │ │ ├── dplyr.dll │ │ │ │ └── symbols.rds │ │ │ │ └── x64 │ │ │ │ ├── dplyr.dll │ │ │ │ └── symbols.rds │ │ ├── ellipsis │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── ellipsis │ │ │ │ ├── ellipsis.rdb │ │ │ │ └── ellipsis.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── ellipsis.rdb │ │ │ │ ├── ellipsis.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ ├── i386 │ │ │ │ ├── ellipsis.dll │ │ │ │ └── symbols.rds │ │ │ │ └── x64 │ │ │ │ ├── ellipsis.dll │ │ │ │ └── symbols.rds │ │ ├── fansi │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── fansi │ │ │ │ ├── fansi.rdb │ │ │ │ └── fansi.rdx │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ ├── sgr-in-rmd.R │ │ │ │ ├── sgr-in-rmd.Rmd │ │ │ │ └── sgr-in-rmd.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── fansi.rdb │ │ │ │ ├── fansi.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ ├── i386 │ │ │ │ ├── fansi.dll │ │ │ │ └── symbols.rds │ │ │ │ └── x64 │ │ │ │ ├── fansi.dll │ │ │ │ └── symbols.rds │ │ ├── generics │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── generics │ │ │ │ ├── generics.rdb │ │ │ │ └── generics.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── generics.rdb │ │ │ │ ├── generics.rdx │ │ │ │ └── paths.rds │ │ │ └── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ ├── glue │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── glue │ │ │ │ ├── glue.rdb │ │ │ │ └── glue.rdx │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ ├── speed.R │ │ │ │ ├── speed.Rmd │ │ │ │ ├── speed.html │ │ │ │ ├── transformers.R │ │ │ │ ├── transformers.Rmd │ │ │ │ └── transformers.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ └── logo.png │ │ │ │ ├── glue.rdb │ │ │ │ ├── glue.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ ├── i386 │ │ │ │ ├── glue.dll │ │ │ │ └── symbols.rds │ │ │ │ └── x64 │ │ │ │ ├── glue.dll │ │ │ │ └── symbols.rds │ │ ├── httr │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── demo.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── httr │ │ │ │ ├── httr.rdb │ │ │ │ └── httr.rdx │ │ │ ├── demo │ │ │ │ ├── connection-sharing.r │ │ │ │ ├── oauth1-nounproject.r │ │ │ │ ├── oauth1-twitter.r │ │ │ │ ├── oauth1-withings.r │ │ │ │ ├── oauth1-yahoo.r │ │ │ │ ├── oauth2-azure.r │ │ │ │ ├── oauth2-facebook.r │ │ │ │ ├── oauth2-github.r │ │ │ │ ├── oauth2-google.r │ │ │ │ ├── oauth2-linkedin.r │ │ │ │ ├── oauth2-reddit.R │ │ │ │ ├── oauth2-vimeo.r │ │ │ │ ├── oauth2-yahoo.r │ │ │ │ ├── oauth2-yelp.R │ │ │ │ └── service-account.R │ │ │ ├── doc │ │ │ │ ├── api-packages.R │ │ │ │ ├── api-packages.Rmd │ │ │ │ ├── api-packages.html │ │ │ │ ├── index.html │ │ │ │ ├── quickstart.R │ │ │ │ ├── quickstart.Rmd │ │ │ │ ├── quickstart.html │ │ │ │ ├── secrets.R │ │ │ │ ├── secrets.Rmd │ │ │ │ └── secrets.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── httr.rdb │ │ │ │ ├── httr.rdx │ │ │ │ └── paths.rds │ │ │ └── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ ├── jsonlite │ │ │ ├── CITATION │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS │ │ │ ├── R │ │ │ │ ├── jsonlite │ │ │ │ ├── jsonlite.rdb │ │ │ │ └── jsonlite.rdx │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ ├── json-aaquickstart.R │ │ │ │ ├── json-aaquickstart.Rmd │ │ │ │ ├── json-aaquickstart.html │ │ │ │ ├── json-apis.Rmd │ │ │ │ ├── json-apis.html │ │ │ │ ├── json-mapping.pdf │ │ │ │ ├── json-mapping.pdf.asis │ │ │ │ ├── json-opencpu.pdf │ │ │ │ ├── json-opencpu.pdf.asis │ │ │ │ ├── json-paging.Rmd │ │ │ │ └── json-paging.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── jsonlite.rdb │ │ │ │ ├── jsonlite.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ ├── i386 │ │ │ │ ├── jsonlite.dll │ │ │ │ └── symbols.rds │ │ │ │ └── x64 │ │ │ │ ├── jsonlite.dll │ │ │ │ └── symbols.rds │ │ ├── lifecycle │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── lifecycle │ │ │ │ ├── lifecycle.rdb │ │ │ │ └── lifecycle.rdx │ │ │ ├── doc │ │ │ │ ├── communicate.R │ │ │ │ ├── communicate.Rmd │ │ │ │ ├── communicate.html │ │ │ │ ├── index.html │ │ │ │ ├── manage.R │ │ │ │ ├── manage.Rmd │ │ │ │ ├── manage.html │ │ │ │ ├── stages.R │ │ │ │ ├── stages.Rmd │ │ │ │ └── stages.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ │ ├── lifecycle-retired.svg │ │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ │ └── lifecycle-superseded.svg │ │ │ │ ├── lifecycle.rdb │ │ │ │ ├── lifecycle.rdx │ │ │ │ ├── macros │ │ │ │ │ └── lifecycle.Rd │ │ │ │ └── paths.rds │ │ │ └── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ ├── magrittr │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── magrittr │ │ │ │ ├── magrittr.rdb │ │ │ │ └── magrittr.rdx │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ ├── magrittr.R │ │ │ │ ├── magrittr.Rmd │ │ │ │ ├── magrittr.html │ │ │ │ ├── tradeoffs.R │ │ │ │ ├── tradeoffs.Rmd │ │ │ │ └── tradeoffs.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── exposition-1.png │ │ │ │ │ └── logo.png │ │ │ │ ├── magrittr.rdb │ │ │ │ ├── magrittr.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ ├── libs │ │ │ │ ├── i386 │ │ │ │ │ ├── magrittr.dll │ │ │ │ │ └── symbols.rds │ │ │ │ └── x64 │ │ │ │ │ ├── magrittr.dll │ │ │ │ │ └── symbols.rds │ │ │ ├── logo-hex.png │ │ │ ├── logo-hex.svg │ │ │ ├── logo.png │ │ │ └── logo.svg │ │ ├── mime │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.Rd │ │ │ ├── R │ │ │ │ ├── mime │ │ │ │ ├── mime.rdb │ │ │ │ └── mime.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── mime.rdb │ │ │ │ ├── mime.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ ├── i386 │ │ │ │ ├── mime.dll │ │ │ │ └── symbols.rds │ │ │ │ └── x64 │ │ │ │ ├── mime.dll │ │ │ │ └── symbols.rds │ │ ├── openssl │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS │ │ │ ├── R │ │ │ │ ├── openssl │ │ │ │ ├── openssl.rdb │ │ │ │ └── openssl.rdx │ │ │ ├── cacert.pem │ │ │ ├── doc │ │ │ │ ├── bignum.R │ │ │ │ ├── bignum.Rmd │ │ │ │ ├── bignum.html │ │ │ │ ├── crypto_hashing.R │ │ │ │ ├── crypto_hashing.Rmd │ │ │ │ ├── crypto_hashing.html │ │ │ │ ├── index.html │ │ │ │ ├── keys.R │ │ │ │ ├── keys.Rmd │ │ │ │ ├── keys.html │ │ │ │ ├── secure_rng.R │ │ │ │ ├── secure_rng.Rmd │ │ │ │ └── secure_rng.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── openssl.rdb │ │ │ │ ├── openssl.rdx │ │ │ │ └── paths.rds │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ ├── i386 │ │ │ │ ├── openssl.dll │ │ │ │ └── symbols.rds │ │ │ │ └── x64 │ │ │ │ ├── openssl.dll │ │ │ │ └── symbols.rds │ │ ├── peRspective │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── data.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── R │ │ │ │ ├── peRspective │ │ │ │ ├── peRspective.rdb │ │ │ │ └── peRspective.rdx │ │ │ ├── data │ │ │ │ ├── Rdata.rdb │ │ │ │ ├── Rdata.rds │ │ │ │ └── Rdata.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── db_append.html │ │ │ │ ├── db_get_data.html │ │ │ │ ├── db_remove.html │ │ │ │ ├── figures │ │ │ │ │ ├── README-unnamed-chunk-10-1.png │ │ │ │ │ ├── README-unnamed-chunk-11-1.png │ │ │ │ │ ├── README-unnamed-chunk-12-1.png │ │ │ │ │ ├── README-unnamed-chunk-13-1.png │ │ │ │ │ ├── README-unnamed-chunk-14-1.png │ │ │ │ │ ├── README-unnamed-chunk-15-1.png │ │ │ │ │ ├── README-unnamed-chunk-16-1.png │ │ │ │ │ ├── README-unnamed-chunk-8-1.png │ │ │ │ │ ├── README-unnamed-chunk-9-1.png │ │ │ │ │ ├── kittens.jpg │ │ │ │ │ ├── perspective.png │ │ │ │ │ └── prsp_stream_output.png │ │ │ │ ├── form_request.html │ │ │ │ ├── msg.html │ │ │ │ ├── paths.rds │ │ │ │ ├── peRspective.html │ │ │ │ ├── peRspective.rdb │ │ │ │ ├── peRspective.rdx │ │ │ │ ├── perspective-package.html │ │ │ │ ├── perspective_api_key.html │ │ │ │ ├── pipe.html │ │ │ │ ├── print_progress.html │ │ │ │ ├── prsp_exp_models.html │ │ │ │ ├── prsp_models.html │ │ │ │ ├── prsp_score.html │ │ │ │ ├── prsp_stream.html │ │ │ │ ├── specify_decimal.html │ │ │ │ └── unnest_scores.html │ │ │ └── html │ │ │ │ ├── 00Index.html │ │ │ │ ├── R.css │ │ │ │ ├── db_append.html │ │ │ │ ├── db_get_data.html │ │ │ │ ├── db_remove.html │ │ │ │ ├── form_request.html │ │ │ │ ├── msg.html │ │ │ │ ├── perspective-package.html │ │ │ │ ├── perspective_api_key.html │ │ │ │ ├── pipe.html │ │ │ │ ├── print_progress.html │ │ │ │ ├── prsp_exp_models.html │ │ │ │ ├── prsp_models.html │ │ │ │ ├── prsp_score.html │ │ │ │ ├── prsp_stream.html │ │ │ │ ├── specify_decimal.html │ │ │ │ └── unnest_scores.html │ │ ├── pillar │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── pillar │ │ │ │ ├── pillar.rdb │ │ │ │ └── pillar.rdx │ │ │ ├── WORDLIST │ │ │ ├── doc │ │ │ │ ├── debugme.R │ │ │ │ ├── debugme.Rmd │ │ │ │ ├── debugme.html │ │ │ │ ├── digits.R │ │ │ │ ├── digits.Rmd │ │ │ │ ├── digits.html │ │ │ │ ├── extending.R │ │ │ │ ├── extending.Rmd │ │ │ │ ├── extending.html │ │ │ │ ├── index.html │ │ │ │ ├── numbers.R │ │ │ │ ├── numbers.Rmd │ │ │ │ ├── numbers.html │ │ │ │ ├── printing.R │ │ │ │ ├── printing.Rmd │ │ │ │ └── printing.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ │ └── lifecycle-superseded.svg │ │ │ │ ├── paths.rds │ │ │ │ ├── pillar.rdb │ │ │ │ └── pillar.rdx │ │ │ └── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ ├── pkgconfig │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.markdown │ │ │ ├── R │ │ │ │ ├── pkgconfig │ │ │ │ ├── pkgconfig.rdb │ │ │ │ └── pkgconfig.rdx │ │ │ ├── README.Rmd │ │ │ ├── README.markdown │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── paths.rds │ │ │ │ ├── pkgconfig.rdb │ │ │ │ └── pkgconfig.rdx │ │ │ └── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ ├── purrr │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── purrr │ │ │ │ ├── purrr.rdb │ │ │ │ └── purrr.rdx │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ ├── other-langs.Rmd │ │ │ │ └── other-langs.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ │ ├── lifecycle-retired.svg │ │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ │ └── logo.png │ │ │ │ ├── paths.rds │ │ │ │ ├── purrr.rdb │ │ │ │ └── purrr.rdx │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ ├── i386 │ │ │ │ ├── purrr.dll │ │ │ │ └── symbols.rds │ │ │ │ └── x64 │ │ │ │ ├── purrr.dll │ │ │ │ └── symbols.rds │ │ ├── rlang │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── rlang │ │ │ │ ├── rlang.rdb │ │ │ │ └── rlang.rdx │ │ │ ├── backtrace-ver │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ │ ├── lifecycle-retired.svg │ │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ │ ├── lifecycle-superseded.svg │ │ │ │ │ └── rlang.png │ │ │ │ ├── paths.rds │ │ │ │ ├── rlang.rdb │ │ │ │ └── rlang.rdx │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ ├── i386 │ │ │ │ ├── rlang.dll │ │ │ │ └── symbols.rds │ │ │ │ └── x64 │ │ │ │ ├── rlang.dll │ │ │ │ └── symbols.rds │ │ ├── rlist │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── data.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS │ │ │ ├── R │ │ │ │ ├── rlist │ │ │ │ ├── rlist.rdb │ │ │ │ └── rlist.rdx │ │ │ ├── data │ │ │ │ ├── Rdata.rdb │ │ │ │ ├── Rdata.rds │ │ │ │ └── Rdata.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── paths.rds │ │ │ │ ├── rlist.rdb │ │ │ │ └── rlist.rdx │ │ │ └── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ ├── stringi │ │ │ ├── AUTHORS │ │ │ ├── CITATION │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS │ │ │ ├── R │ │ │ │ ├── stringi │ │ │ │ ├── stringi.rdb │ │ │ │ └── stringi.rdx │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── paths.rds │ │ │ │ ├── stringi.rdb │ │ │ │ └── stringi.rdx │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ ├── include │ │ │ │ ├── stringi.cpp │ │ │ │ └── stringi.h │ │ │ └── libs │ │ │ │ ├── LICENSE │ │ │ │ ├── i386 │ │ │ │ ├── stringi.dll │ │ │ │ └── symbols.rds │ │ │ │ ├── icu4c-69.1-data-bin-l-README.md │ │ │ │ ├── icudt69l.dat │ │ │ │ └── x64 │ │ │ │ ├── stringi.dll │ │ │ │ └── symbols.rds │ │ ├── stringr │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── data.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── stringr │ │ │ │ ├── stringr.rdb │ │ │ │ └── stringr.rdx │ │ │ ├── data │ │ │ │ ├── Rdata.rdb │ │ │ │ ├── Rdata.rds │ │ │ │ └── Rdata.rdx │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ ├── regular-expressions.R │ │ │ │ ├── regular-expressions.Rmd │ │ │ │ ├── regular-expressions.html │ │ │ │ ├── stringr.R │ │ │ │ ├── stringr.Rmd │ │ │ │ └── stringr.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ └── logo.png │ │ │ │ ├── paths.rds │ │ │ │ ├── stringr.rdb │ │ │ │ └── stringr.rdx │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── htmlwidgets │ │ │ │ ├── lib │ │ │ │ └── str_view.css │ │ │ │ ├── str_view.js │ │ │ │ └── str_view.yaml │ │ ├── sys │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS │ │ │ ├── R │ │ │ │ ├── sys │ │ │ │ ├── sys.rdb │ │ │ │ └── sys.rdx │ │ │ ├── WORDLIST │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── paths.rds │ │ │ │ ├── sys.rdb │ │ │ │ └── sys.rdx │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ ├── libs │ │ │ │ ├── i386 │ │ │ │ │ ├── symbols.rds │ │ │ │ │ └── sys.dll │ │ │ │ └── x64 │ │ │ │ │ ├── symbols.rds │ │ │ │ │ └── sys.dll │ │ │ └── utf8.txt │ │ ├── tibble │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── tibble │ │ │ │ ├── tibble.rdb │ │ │ │ └── tibble.rdx │ │ │ ├── doc │ │ │ │ ├── extending.Rmd │ │ │ │ ├── extending.html │ │ │ │ ├── formats.R │ │ │ │ ├── formats.Rmd │ │ │ │ ├── formats.html │ │ │ │ ├── index.html │ │ │ │ ├── invariants.R │ │ │ │ ├── invariants.Rmd │ │ │ │ ├── invariants.html │ │ │ │ ├── tibble.R │ │ │ │ ├── tibble.Rmd │ │ │ │ ├── tibble.html │ │ │ │ ├── types.R │ │ │ │ ├── types.Rmd │ │ │ │ └── types.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ │ ├── lifecycle-superseded.svg │ │ │ │ │ └── logo.png │ │ │ │ ├── paths.rds │ │ │ │ ├── tibble.rdb │ │ │ │ └── tibble.rdx │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ ├── i386 │ │ │ │ ├── symbols.rds │ │ │ │ └── tibble.dll │ │ │ │ └── x64 │ │ │ │ ├── symbols.rds │ │ │ │ └── tibble.dll │ │ ├── tidyselect │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── tidyselect │ │ │ │ ├── tidyselect.rdb │ │ │ │ └── tidyselect.rdx │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ ├── syntax.R │ │ │ │ ├── syntax.Rmd │ │ │ │ ├── syntax.html │ │ │ │ ├── tidyselect.R │ │ │ │ ├── tidyselect.Rmd │ │ │ │ └── tidyselect.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── paths.rds │ │ │ │ ├── tidyselect.rdb │ │ │ │ └── tidyselect.rdx │ │ │ └── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ ├── utf8 │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── R │ │ │ │ ├── utf8 │ │ │ │ ├── utf8.rdb │ │ │ │ └── utf8.rdx │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ ├── utf8.Rmd │ │ │ │ └── utf8.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── paths.rds │ │ │ │ ├── utf8.rdb │ │ │ │ └── utf8.rdx │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ └── libs │ │ │ │ ├── i386 │ │ │ │ ├── symbols.rds │ │ │ │ └── utf8.dll │ │ │ │ └── x64 │ │ │ │ ├── symbols.rds │ │ │ │ └── utf8.dll │ │ ├── vctrs │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ │ ├── Rd.rds │ │ │ │ ├── features.rds │ │ │ │ ├── hsearch.rds │ │ │ │ ├── links.rds │ │ │ │ ├── nsInfo.rds │ │ │ │ ├── package.rds │ │ │ │ └── vignette.rds │ │ │ ├── NAMESPACE │ │ │ ├── NEWS.md │ │ │ ├── R │ │ │ │ ├── vctrs │ │ │ │ ├── vctrs.rdb │ │ │ │ └── vctrs.rdx │ │ │ ├── WORDLIST │ │ │ ├── doc │ │ │ │ ├── index.html │ │ │ │ ├── pillar.R │ │ │ │ ├── pillar.Rmd │ │ │ │ ├── pillar.html │ │ │ │ ├── s3-vector.R │ │ │ │ ├── s3-vector.Rmd │ │ │ │ ├── s3-vector.html │ │ │ │ ├── stability.R │ │ │ │ ├── stability.Rmd │ │ │ │ ├── stability.html │ │ │ │ ├── type-size.R │ │ │ │ ├── type-size.Rmd │ │ │ │ └── type-size.html │ │ │ ├── help │ │ │ │ ├── AnIndex │ │ │ │ ├── aliases.rds │ │ │ │ ├── figures │ │ │ │ │ ├── cast.png │ │ │ │ │ ├── coerce.png │ │ │ │ │ ├── combined.png │ │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ │ ├── lifecycle-superseded.svg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── sizes-recycling.png │ │ │ │ │ ├── vec-count-deps.png │ │ │ │ │ └── vec-count-deps.svg │ │ │ │ ├── paths.rds │ │ │ │ ├── vctrs.rdb │ │ │ │ └── vctrs.rdx │ │ │ ├── html │ │ │ │ ├── 00Index.html │ │ │ │ └── R.css │ │ │ ├── include │ │ │ │ ├── vctrs.c │ │ │ │ └── vctrs.h │ │ │ └── libs │ │ │ │ ├── i386 │ │ │ │ ├── symbols.rds │ │ │ │ └── vctrs.dll │ │ │ │ └── x64 │ │ │ │ ├── symbols.rds │ │ │ │ └── vctrs.dll │ │ └── yaml │ │ │ ├── CHANGELOG │ │ │ ├── DESCRIPTION │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── MD5 │ │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ │ ├── NAMESPACE │ │ │ ├── R │ │ │ ├── yaml │ │ │ ├── yaml.rdb │ │ │ └── yaml.rdx │ │ │ ├── THANKS │ │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── paths.rds │ │ │ ├── yaml.rdb │ │ │ └── yaml.rdx │ │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ │ ├── implicit.re │ │ │ ├── libs │ │ │ ├── i386 │ │ │ │ ├── symbols.rds │ │ │ │ └── yaml.dll │ │ │ └── x64 │ │ │ │ ├── symbols.rds │ │ │ │ └── yaml.dll │ │ │ └── tests │ │ │ ├── files │ │ │ ├── merge.yml │ │ │ └── test.yml │ │ │ ├── test_as_yaml.R │ │ │ ├── test_read_yaml.R │ │ │ ├── test_write_yaml.R │ │ │ ├── test_yaml_load.R │ │ │ └── test_yaml_load_file.R │ │ └── old │ │ ├── R6 │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── R6 │ │ │ ├── R6.rdb │ │ │ └── R6.rdx │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── R6.rdb │ │ │ ├── R6.rdx │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ ├── logo.png │ │ │ │ └── logo.svg │ │ │ └── paths.rds │ │ └── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── XML │ │ ├── COPYRIGHTS │ │ ├── DESCRIPTION │ │ ├── FAQ.html │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── R │ │ │ ├── XML │ │ │ ├── XML.rdb │ │ │ └── XML.rdx │ │ ├── exampleData │ │ │ ├── 9003-en.html │ │ │ ├── 9003.html │ │ │ ├── GNUmakefile │ │ │ ├── README │ │ │ ├── Rref.xml │ │ │ ├── Rsource.xml │ │ │ ├── SOAPNamespaces.xml │ │ │ ├── StatModel.dtd │ │ │ ├── TestInvalid.xml │ │ │ ├── allNodeTypes.xml │ │ │ ├── author.xml │ │ │ ├── author.xsd │ │ │ ├── author1.xml │ │ │ ├── author2.xml │ │ │ ├── author2.xsd │ │ │ ├── basic.xml │ │ │ ├── book.xml │ │ │ ├── boxplot.svg │ │ │ ├── branch.xml │ │ │ ├── catalog.xml │ │ │ ├── cdata.xml │ │ │ ├── charts.svg │ │ │ ├── cleanNamespace.xml │ │ │ ├── content.html │ │ │ ├── dataframe.xml │ │ │ ├── dot.xml │ │ │ ├── dtd.zip │ │ │ ├── entity.xml │ │ │ ├── entity1.xml │ │ │ ├── entity2.xml │ │ │ ├── entity3.html │ │ │ ├── entity4.xml │ │ │ ├── entityValue │ │ │ ├── eurofxref-hist.xml.gz │ │ │ ├── event.xml │ │ │ ├── foo.dtd │ │ │ ├── functionTemplate.xml │ │ │ ├── generalInfo.xml │ │ │ ├── gnumeric.xml │ │ │ ├── graph.gxl │ │ │ ├── iTunes.plist │ │ │ ├── include.xml │ │ │ ├── job.xml │ │ │ ├── kiva_lender.xml │ │ │ ├── largeText.xml │ │ │ ├── lists.html │ │ │ ├── literate.dtd │ │ │ ├── literate.xml │ │ │ ├── literate.xsl │ │ │ ├── literateFunction.xml │ │ │ ├── longitudinalData.xml │ │ │ ├── malformed.xml │ │ │ ├── mathml.dtd │ │ │ ├── mathml.xml │ │ │ ├── mathmlFuncCall.xml │ │ │ ├── mathmlInt.xml │ │ │ ├── mathmlMatrix.xml │ │ │ ├── mathmlQuadratic.xml │ │ │ ├── mathmlRoot.xml │ │ │ ├── mathmlScript.xml │ │ │ ├── mathmlSet.xml │ │ │ ├── mathmlSimple.xml │ │ │ ├── mathmlSphere.xml │ │ │ ├── mathmlSums.xml │ │ │ ├── matrixMult.xml │ │ │ ├── mtcars.xml │ │ │ ├── namespaceHandlers.xml │ │ │ ├── namespaces.xml │ │ │ ├── namespaces1.xml │ │ │ ├── namespaces2.xml │ │ │ ├── nodes.xml │ │ │ ├── nodes1.xml │ │ │ ├── nodes2.xml │ │ │ ├── nodes3.xml │ │ │ ├── nsAttrs.xml │ │ │ ├── plist.xml │ │ │ ├── raw.xml │ │ │ ├── redundantNS.xml │ │ │ ├── reparent.xml │ │ │ ├── rhelp.xsl │ │ │ ├── rxinclude.xml │ │ │ ├── same.xml │ │ │ ├── setInterval.xml │ │ │ ├── simple.plist │ │ │ ├── simple.xml │ │ │ ├── size.xml │ │ │ ├── size1.xml │ │ │ ├── size2.xml │ │ │ ├── size3.xml │ │ │ ├── solr.xml │ │ │ ├── something.xml │ │ │ ├── svg.xml │ │ │ ├── symslines.svg │ │ │ ├── tagnames.xml │ │ │ ├── test.xml │ │ │ ├── test1.xml │ │ │ ├── tides.xml │ │ │ ├── utf.xml │ │ │ ├── vars.xml │ │ │ ├── writeRS.S │ │ │ ├── writeRS.xml │ │ │ ├── xinclude │ │ │ │ ├── a.xml │ │ │ │ ├── b.xml │ │ │ │ ├── c.xml │ │ │ │ ├── d.xml │ │ │ │ ├── e.xml │ │ │ │ ├── simple.xml │ │ │ │ └── top.xml │ │ │ ├── xpathTest.xml │ │ │ ├── xysize.svg │ │ │ └── xyz.svg.gz │ │ ├── examples │ │ │ ├── CIS.R │ │ │ ├── DiGIR.R │ │ │ ├── GNUmakefile │ │ │ ├── HTMLText.R │ │ │ ├── README │ │ │ ├── Rhelp.xml │ │ │ ├── RhelpArchive.xml │ │ │ ├── RhelpInfo.xml │ │ │ ├── SAXEntity.R │ │ │ ├── SSource.dtd │ │ │ ├── author.R │ │ │ ├── bondYields.R │ │ │ ├── bondsTables.R │ │ │ ├── catalog.R │ │ │ ├── connections.R │ │ │ ├── connections1.R │ │ │ ├── createTree.R │ │ │ ├── createTree1.R │ │ │ ├── dataFrameEvent.R │ │ │ ├── docbook.R │ │ │ ├── ecb.R │ │ │ ├── enhancedDataFrame.R │ │ │ ├── event.R │ │ │ ├── event.S │ │ │ ├── eventHandlers.R │ │ │ ├── faq.R │ │ │ ├── filterDataFrameEvent.R │ │ │ ├── foo.html │ │ │ ├── formals.xsl │ │ │ ├── functionIndex.Sxml │ │ │ ├── genericHandlers.R │ │ │ ├── generic_file.xml │ │ │ ├── getElements.S │ │ │ ├── gettingStarted.html │ │ │ ├── gettingStarted.xml │ │ │ ├── gnumericHandler.R │ │ │ ├── hashTree.R │ │ │ ├── iTunes.plist │ │ │ ├── index.html │ │ │ ├── internalNodes.S │ │ │ ├── internalXInclude.xml │ │ │ ├── itunes.R │ │ │ ├── itunes.xsl │ │ │ ├── itunesSax.R │ │ │ ├── itunesSax1.R │ │ │ ├── itunesSax2.R │ │ │ ├── mathml.R │ │ │ ├── mathmlPlot.R │ │ │ ├── metlin.R │ │ │ ├── mexico.R │ │ │ ├── mexico.xml │ │ │ ├── mi1.R │ │ │ ├── modified_itunes_sax.R │ │ │ ├── namespaces.S │ │ │ ├── namespaces1.S │ │ │ ├── newNodes.R │ │ │ ├── oop.S │ │ │ ├── pi.xml │ │ │ ├── pmml.R │ │ │ ├── prompt.xml │ │ │ ├── promptXML.R │ │ │ ├── promptXML.Sxml │ │ │ ├── rcode.xml │ │ │ ├── rcode.xsl │ │ │ ├── redirection.R │ │ │ ├── reorder.xml │ │ │ ├── sbml.xml │ │ │ ├── sbmlSAX.S │ │ │ ├── schema.xsd │ │ │ ├── schemaEg.xml │ │ │ ├── schemas.xml │ │ │ ├── svg.R │ │ │ ├── tags.Sxml │ │ │ ├── trademe_cars.R │ │ │ ├── valueFilterDataFrameEvent.R │ │ │ ├── wordML.R │ │ │ ├── writeExamples.S │ │ │ ├── xml2tex.Sxml │ │ │ ├── xmlSource.R │ │ │ ├── xmlTags.xml │ │ │ ├── xmlTree.R │ │ │ ├── xpath.R │ │ │ └── xpath.xml │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── XML.rdb │ │ │ ├── XML.rdx │ │ │ ├── aliases.rds │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── libs │ │ │ ├── i386 │ │ │ │ ├── XML.dll │ │ │ │ └── symbols.rds │ │ │ └── x64 │ │ │ │ ├── XML.dll │ │ │ │ └── symbols.rds │ │ └── scripts │ │ │ ├── RSXML.bsh.in │ │ │ └── RSXML.csh.in │ │ ├── askpass │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS │ │ ├── R │ │ │ ├── askpass │ │ │ ├── askpass.rdb │ │ │ └── askpass.rdx │ │ ├── WORDLIST │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── askpass.rdb │ │ │ ├── askpass.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── libs │ │ │ ├── i386 │ │ │ │ ├── askpass.dll │ │ │ │ └── symbols.rds │ │ │ └── x64 │ │ │ │ ├── askpass.dll │ │ │ │ └── symbols.rds │ │ ├── mac-askpass │ │ ├── mac-simplepass │ │ ├── win-askpass32.exe │ │ └── win-askpass64.exe │ │ ├── cli │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── cli │ │ │ ├── cli.rdb │ │ │ ├── cli.rdx │ │ │ ├── sysdata.rdb │ │ │ └── sysdata.rdx │ │ ├── examples │ │ │ └── apps │ │ │ │ ├── news.R │ │ │ │ ├── outdated.R │ │ │ │ ├── search.R │ │ │ │ └── up.R │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── cli.rdb │ │ │ ├── cli.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── include │ │ │ └── cli │ │ │ │ └── progress.h │ │ ├── libs │ │ │ ├── i386 │ │ │ │ ├── cli.dll │ │ │ │ └── symbols.rds │ │ │ └── x64 │ │ │ │ ├── cli.dll │ │ │ │ └── symbols.rds │ │ ├── logo.txt │ │ ├── scripts │ │ │ ├── news.R │ │ │ ├── outdated.R │ │ │ ├── search.R │ │ │ └── up.R │ │ └── shiny │ │ │ ├── along │ │ │ └── app.R │ │ │ ├── format │ │ │ └── app.R │ │ │ ├── nested │ │ │ └── app.R │ │ │ └── simple │ │ │ └── app.R │ │ ├── crayon │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── crayon │ │ │ ├── crayon.rdb │ │ │ └── crayon.rdx │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── crayon.rdb │ │ │ ├── crayon.rdx │ │ │ └── paths.rds │ │ └── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── curl │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS │ │ ├── R │ │ │ ├── curl │ │ │ ├── curl.rdb │ │ │ ├── curl.rdx │ │ │ ├── sysdata.rdb │ │ │ └── sysdata.rdx │ │ ├── WORDLIST │ │ ├── doc │ │ │ ├── index.html │ │ │ ├── intro.R │ │ │ ├── intro.Rmd │ │ │ ├── intro.html │ │ │ ├── windows.R │ │ │ ├── windows.Rmd │ │ │ └── windows.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── curl.rdb │ │ │ ├── curl.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ ├── i386 │ │ │ ├── curl.dll │ │ │ └── symbols.rds │ │ │ └── x64 │ │ │ ├── curl.dll │ │ │ └── symbols.rds │ │ ├── data.table │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── data.table │ │ │ ├── data.table.rdb │ │ │ └── data.table.rdx │ │ ├── cc │ │ ├── doc │ │ │ ├── datatable-benchmarking.Rmd │ │ │ ├── datatable-benchmarking.html │ │ │ ├── datatable-faq.R │ │ │ ├── datatable-faq.Rmd │ │ │ ├── datatable-faq.html │ │ │ ├── datatable-importing.Rmd │ │ │ ├── datatable-importing.html │ │ │ ├── datatable-intro.R │ │ │ ├── datatable-intro.Rmd │ │ │ ├── datatable-intro.html │ │ │ ├── datatable-keys-fast-subset.R │ │ │ ├── datatable-keys-fast-subset.Rmd │ │ │ ├── datatable-keys-fast-subset.html │ │ │ ├── datatable-reference-semantics.R │ │ │ ├── datatable-reference-semantics.Rmd │ │ │ ├── datatable-reference-semantics.html │ │ │ ├── datatable-reshape.R │ │ │ ├── datatable-reshape.Rmd │ │ │ ├── datatable-reshape.html │ │ │ ├── datatable-sd-usage.R │ │ │ ├── datatable-sd-usage.Rmd │ │ │ ├── datatable-sd-usage.html │ │ │ ├── datatable-secondary-indices-and-auto-indexing.R │ │ │ ├── datatable-secondary-indices-and-auto-indexing.Rmd │ │ │ ├── datatable-secondary-indices-and-auto-indexing.html │ │ │ └── index.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── data.table.rdb │ │ │ ├── data.table.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── include │ │ │ └── datatableAPI.h │ │ ├── libs │ │ │ ├── i386 │ │ │ │ ├── datatable.dll │ │ │ │ └── symbols.rds │ │ │ └── x64 │ │ │ │ ├── datatable.dll │ │ │ │ └── symbols.rds │ │ ├── po │ │ │ ├── en@quot │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── R-data.table.mo │ │ │ │ │ └── data.table.mo │ │ │ └── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── R-data.table.mo │ │ │ │ └── data.table.mo │ │ └── tests │ │ │ ├── 1206FUT.txt.bz2 │ │ │ ├── 1680-fread-header-encoding.csv │ │ │ ├── 2008head.csv.bz2 │ │ │ ├── 530_fread.txt │ │ │ ├── 536_fread_fill_1.txt │ │ │ ├── 536_fread_fill_2.txt │ │ │ ├── 536_fread_fill_3_extreme.txt │ │ │ ├── 536_fread_fill_4.txt │ │ │ ├── SA2-by-DJZ.csv.gz │ │ │ ├── allchar.csv.gz │ │ │ ├── alluniquechar.csv.gz │ │ │ ├── bad.txt.bz2 │ │ │ ├── benchmark.Rraw.bz2 │ │ │ ├── ch11b.dat.bz2 │ │ │ ├── colnames4096.csv.bz2 │ │ │ ├── csvy │ │ │ ├── test.csvy │ │ │ ├── test_attributes.csvy │ │ │ ├── test_comment.csvy │ │ │ ├── test_extraneous.csvy │ │ │ ├── test_incomplete_header.csvy │ │ │ ├── test_missing_type.csvy │ │ │ ├── test_override_dec.csvy │ │ │ ├── test_override_header.csvy │ │ │ ├── test_override_na.csvy │ │ │ ├── test_override_quote.csvy │ │ │ ├── test_override_sep.csvy │ │ │ └── test_skip.csvy │ │ │ ├── doublequote_newline.csv │ │ │ ├── fillheader.csv.bz2 │ │ │ ├── fread_blank.txt │ │ │ ├── fread_blank2.txt │ │ │ ├── fread_blank3.txt │ │ │ ├── fread_line_error.csv.bz2 │ │ │ ├── froll.Rraw.bz2 │ │ │ ├── gb18030.txt │ │ │ ├── genotypes_genome.txt.bz2 │ │ │ ├── grr.csv.gz │ │ │ ├── isoweek_test.csv.bz2 │ │ │ ├── issue_1087_utf8_bom.csv │ │ │ ├── issue_1095_fread.txt.bz2 │ │ │ ├── issue_1113_fread.txt.bz2 │ │ │ ├── issue_1116_fread_few_lines.txt.gz │ │ │ ├── issue_1116_fread_few_lines_2.txt.gz │ │ │ ├── issue_1164_json.txt │ │ │ ├── issue_1330_fread.txt │ │ │ ├── issue_1462_fread_quotes.txt.gz │ │ │ ├── issue_1573_fill.txt │ │ │ ├── issue_2051.csv.gz │ │ │ ├── issue_2157_sampling_overlap.txt.gz │ │ │ ├── issue_2157_sampling_reached_eof_early.txt.bz2 │ │ │ ├── issue_3400_fread.txt │ │ │ ├── issue_563_fread.txt │ │ │ ├── issue_773_fread.txt │ │ │ ├── issue_785_fread.txt.gz │ │ │ ├── iterations.txt.bz2 │ │ │ ├── melt-warning-1752.tsv.gz │ │ │ ├── melt_1754.R.gz │ │ │ ├── melt_1754_synth.csv.bz2 │ │ │ ├── nafill.Rraw.bz2 │ │ │ ├── noquote.csv.gz │ │ │ ├── onecol4096.csv.bz2 │ │ │ ├── other.Rraw.bz2 │ │ │ ├── quoted_multiline.csv.bz2 │ │ │ ├── quoted_no_header.csv │ │ │ ├── russellCRCRLF.csv │ │ │ ├── russellCRLF.csv │ │ │ ├── session_aborted_fatal_error.txt.bz2 │ │ │ ├── test0.txt.bz2 │ │ │ ├── test1372-1.Rdata │ │ │ ├── test1372.Rdata │ │ │ ├── tests-DESCRIPTION │ │ │ ├── tests.Rraw.bz2 │ │ │ ├── types.Rraw.bz2 │ │ │ ├── unescaped.csv │ │ │ ├── utf16be.txt │ │ │ ├── utf16le.txt │ │ │ └── winallquoted.csv.bz2 │ │ ├── dplyr │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── data.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── dplyr │ │ │ ├── dplyr.rdb │ │ │ └── dplyr.rdx │ │ ├── data │ │ │ ├── Rdata.rdb │ │ │ ├── Rdata.rds │ │ │ └── Rdata.rdx │ │ ├── doc │ │ │ ├── base.R │ │ │ ├── base.Rmd │ │ │ ├── base.html │ │ │ ├── colwise.R │ │ │ ├── colwise.Rmd │ │ │ ├── colwise.html │ │ │ ├── compatibility.R │ │ │ ├── compatibility.Rmd │ │ │ ├── compatibility.html │ │ │ ├── dplyr.R │ │ │ ├── dplyr.Rmd │ │ │ ├── dplyr.html │ │ │ ├── grouping.R │ │ │ ├── grouping.Rmd │ │ │ ├── grouping.html │ │ │ ├── index.html │ │ │ ├── programming.R │ │ │ ├── programming.Rmd │ │ │ ├── programming.html │ │ │ ├── rowwise.R │ │ │ ├── rowwise.Rmd │ │ │ ├── rowwise.html │ │ │ ├── two-table.R │ │ │ ├── two-table.Rmd │ │ │ ├── two-table.html │ │ │ ├── window-functions.R │ │ │ ├── window-functions.Rmd │ │ │ └── window-functions.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── dplyr.rdb │ │ │ ├── dplyr.rdx │ │ │ ├── figures │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ ├── lifecycle-retired.svg │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ ├── lifecycle-superseded.svg │ │ │ │ └── logo.png │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ ├── i386 │ │ │ ├── dplyr.dll │ │ │ └── symbols.rds │ │ │ └── x64 │ │ │ ├── dplyr.dll │ │ │ └── symbols.rds │ │ ├── ellipsis │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── ellipsis │ │ │ ├── ellipsis.rdb │ │ │ └── ellipsis.rdx │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── ellipsis.rdb │ │ │ ├── ellipsis.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ ├── i386 │ │ │ ├── ellipsis.dll │ │ │ └── symbols.rds │ │ │ └── x64 │ │ │ ├── ellipsis.dll │ │ │ └── symbols.rds │ │ ├── fansi │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── fansi │ │ │ ├── fansi.rdb │ │ │ └── fansi.rdx │ │ ├── doc │ │ │ ├── index.html │ │ │ ├── sgr-in-rmd.R │ │ │ ├── sgr-in-rmd.Rmd │ │ │ └── sgr-in-rmd.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── fansi.rdb │ │ │ ├── fansi.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ ├── i386 │ │ │ ├── fansi.dll │ │ │ └── symbols.rds │ │ │ └── x64 │ │ │ ├── fansi.dll │ │ │ └── symbols.rds │ │ ├── generics │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── generics │ │ │ ├── generics.rdb │ │ │ └── generics.rdx │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── generics.rdb │ │ │ ├── generics.rdx │ │ │ └── paths.rds │ │ └── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── glue │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── glue │ │ │ ├── glue.rdb │ │ │ └── glue.rdx │ │ ├── doc │ │ │ ├── index.html │ │ │ ├── speed.R │ │ │ ├── speed.Rmd │ │ │ ├── speed.html │ │ │ ├── transformers.R │ │ │ ├── transformers.Rmd │ │ │ └── transformers.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ └── logo.png │ │ │ ├── glue.rdb │ │ │ ├── glue.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ ├── i386 │ │ │ ├── glue.dll │ │ │ └── symbols.rds │ │ │ └── x64 │ │ │ ├── glue.dll │ │ │ └── symbols.rds │ │ ├── httr │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── demo.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── httr │ │ │ ├── httr.rdb │ │ │ └── httr.rdx │ │ ├── demo │ │ │ ├── connection-sharing.r │ │ │ ├── oauth1-nounproject.r │ │ │ ├── oauth1-twitter.r │ │ │ ├── oauth1-withings.r │ │ │ ├── oauth1-yahoo.r │ │ │ ├── oauth2-azure.r │ │ │ ├── oauth2-facebook.r │ │ │ ├── oauth2-github.r │ │ │ ├── oauth2-google.r │ │ │ ├── oauth2-linkedin.r │ │ │ ├── oauth2-reddit.R │ │ │ ├── oauth2-vimeo.r │ │ │ ├── oauth2-yahoo.r │ │ │ ├── oauth2-yelp.R │ │ │ └── service-account.R │ │ ├── doc │ │ │ ├── api-packages.R │ │ │ ├── api-packages.Rmd │ │ │ ├── api-packages.html │ │ │ ├── index.html │ │ │ ├── quickstart.R │ │ │ ├── quickstart.Rmd │ │ │ ├── quickstart.html │ │ │ ├── secrets.R │ │ │ ├── secrets.Rmd │ │ │ └── secrets.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── httr.rdb │ │ │ ├── httr.rdx │ │ │ └── paths.rds │ │ └── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── jsonlite │ │ ├── CITATION │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS │ │ ├── R │ │ │ ├── jsonlite │ │ │ ├── jsonlite.rdb │ │ │ └── jsonlite.rdx │ │ ├── doc │ │ │ ├── index.html │ │ │ ├── json-aaquickstart.R │ │ │ ├── json-aaquickstart.Rmd │ │ │ ├── json-aaquickstart.html │ │ │ ├── json-apis.Rmd │ │ │ ├── json-apis.html │ │ │ ├── json-mapping.pdf │ │ │ ├── json-mapping.pdf.asis │ │ │ ├── json-opencpu.pdf │ │ │ ├── json-opencpu.pdf.asis │ │ │ ├── json-paging.Rmd │ │ │ └── json-paging.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── jsonlite.rdb │ │ │ ├── jsonlite.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ ├── i386 │ │ │ ├── jsonlite.dll │ │ │ └── symbols.rds │ │ │ └── x64 │ │ │ ├── jsonlite.dll │ │ │ └── symbols.rds │ │ ├── lifecycle │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── lifecycle │ │ │ ├── lifecycle.rdb │ │ │ └── lifecycle.rdx │ │ ├── doc │ │ │ ├── communicate.R │ │ │ ├── communicate.Rmd │ │ │ ├── communicate.html │ │ │ ├── index.html │ │ │ ├── manage.R │ │ │ ├── manage.Rmd │ │ │ ├── manage.html │ │ │ ├── stages.R │ │ │ ├── stages.Rmd │ │ │ └── stages.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ ├── lifecycle-retired.svg │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ └── lifecycle-superseded.svg │ │ │ ├── lifecycle.rdb │ │ │ ├── lifecycle.rdx │ │ │ ├── macros │ │ │ │ └── lifecycle.Rd │ │ │ └── paths.rds │ │ └── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── magrittr │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── magrittr │ │ │ ├── magrittr.rdb │ │ │ └── magrittr.rdx │ │ ├── doc │ │ │ ├── index.html │ │ │ ├── magrittr.R │ │ │ ├── magrittr.Rmd │ │ │ ├── magrittr.html │ │ │ ├── tradeoffs.R │ │ │ ├── tradeoffs.Rmd │ │ │ └── tradeoffs.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ ├── exposition-1.png │ │ │ │ └── logo.png │ │ │ ├── magrittr.rdb │ │ │ ├── magrittr.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── libs │ │ │ ├── i386 │ │ │ │ ├── magrittr.dll │ │ │ │ └── symbols.rds │ │ │ └── x64 │ │ │ │ ├── magrittr.dll │ │ │ │ └── symbols.rds │ │ ├── logo-hex.png │ │ ├── logo-hex.svg │ │ ├── logo.png │ │ └── logo.svg │ │ ├── mime │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.Rd │ │ ├── R │ │ │ ├── mime │ │ │ ├── mime.rdb │ │ │ └── mime.rdx │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── mime.rdb │ │ │ ├── mime.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ ├── i386 │ │ │ ├── mime.dll │ │ │ └── symbols.rds │ │ │ └── x64 │ │ │ ├── mime.dll │ │ │ └── symbols.rds │ │ ├── openssl │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS │ │ ├── R │ │ │ ├── openssl │ │ │ ├── openssl.rdb │ │ │ └── openssl.rdx │ │ ├── cacert.pem │ │ ├── doc │ │ │ ├── bignum.R │ │ │ ├── bignum.Rmd │ │ │ ├── bignum.html │ │ │ ├── crypto_hashing.R │ │ │ ├── crypto_hashing.Rmd │ │ │ ├── crypto_hashing.html │ │ │ ├── index.html │ │ │ ├── keys.R │ │ │ ├── keys.Rmd │ │ │ ├── keys.html │ │ │ ├── secure_rng.R │ │ │ ├── secure_rng.Rmd │ │ │ └── secure_rng.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── openssl.rdb │ │ │ ├── openssl.rdx │ │ │ └── paths.rds │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ ├── i386 │ │ │ ├── openssl.dll │ │ │ └── symbols.rds │ │ │ └── x64 │ │ │ ├── openssl.dll │ │ │ └── symbols.rds │ │ ├── peRspective │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── data.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── peRspective │ │ │ ├── peRspective.rdb │ │ │ └── peRspective.rdx │ │ ├── data │ │ │ ├── Rdata.rdb │ │ │ ├── Rdata.rds │ │ │ └── Rdata.rdx │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ ├── README-unnamed-chunk-10-1.png │ │ │ │ ├── README-unnamed-chunk-11-1.png │ │ │ │ ├── README-unnamed-chunk-12-1.png │ │ │ │ ├── README-unnamed-chunk-13-1.png │ │ │ │ ├── README-unnamed-chunk-14-1.png │ │ │ │ ├── README-unnamed-chunk-15-1.png │ │ │ │ ├── README-unnamed-chunk-16-1.png │ │ │ │ ├── README-unnamed-chunk-8-1.png │ │ │ │ ├── README-unnamed-chunk-9-1.png │ │ │ │ ├── perspective.png │ │ │ │ └── prsp_stream_output.png │ │ │ ├── paths.rds │ │ │ ├── peRspective.rdb │ │ │ └── peRspective.rdx │ │ └── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── pillar │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── pillar │ │ │ ├── pillar.rdb │ │ │ └── pillar.rdx │ │ ├── WORDLIST │ │ ├── doc │ │ │ ├── debugme.R │ │ │ ├── debugme.Rmd │ │ │ ├── debugme.html │ │ │ ├── digits.R │ │ │ ├── digits.Rmd │ │ │ ├── digits.html │ │ │ ├── extending.R │ │ │ ├── extending.Rmd │ │ │ ├── extending.html │ │ │ ├── index.html │ │ │ ├── numbers.R │ │ │ ├── numbers.Rmd │ │ │ ├── numbers.html │ │ │ ├── printing.R │ │ │ ├── printing.Rmd │ │ │ └── printing.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ └── lifecycle-superseded.svg │ │ │ ├── paths.rds │ │ │ ├── pillar.rdb │ │ │ └── pillar.rdx │ │ └── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── pkgconfig │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.markdown │ │ ├── R │ │ │ ├── pkgconfig │ │ │ ├── pkgconfig.rdb │ │ │ └── pkgconfig.rdx │ │ ├── README.Rmd │ │ ├── README.markdown │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── paths.rds │ │ │ ├── pkgconfig.rdb │ │ │ └── pkgconfig.rdx │ │ └── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── purrr │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── purrr │ │ │ ├── purrr.rdb │ │ │ └── purrr.rdx │ │ ├── doc │ │ │ ├── index.html │ │ │ ├── other-langs.Rmd │ │ │ └── other-langs.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ ├── lifecycle-retired.svg │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ └── logo.png │ │ │ ├── paths.rds │ │ │ ├── purrr.rdb │ │ │ └── purrr.rdx │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ ├── i386 │ │ │ ├── purrr.dll │ │ │ └── symbols.rds │ │ │ └── x64 │ │ │ ├── purrr.dll │ │ │ └── symbols.rds │ │ ├── rlang │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── rlang │ │ │ ├── rlang.rdb │ │ │ └── rlang.rdx │ │ ├── backtrace-ver │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ ├── lifecycle-retired.svg │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ ├── lifecycle-superseded.svg │ │ │ │ └── rlang.png │ │ │ ├── paths.rds │ │ │ ├── rlang.rdb │ │ │ └── rlang.rdx │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ ├── i386 │ │ │ ├── rlang.dll │ │ │ └── symbols.rds │ │ │ └── x64 │ │ │ ├── rlang.dll │ │ │ └── symbols.rds │ │ ├── rlist │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── data.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS │ │ ├── R │ │ │ ├── rlist │ │ │ ├── rlist.rdb │ │ │ └── rlist.rdx │ │ ├── data │ │ │ ├── Rdata.rdb │ │ │ ├── Rdata.rds │ │ │ └── Rdata.rdx │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── paths.rds │ │ │ ├── rlist.rdb │ │ │ └── rlist.rdx │ │ └── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── stringi │ │ ├── AUTHORS │ │ ├── CITATION │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS │ │ ├── R │ │ │ ├── stringi │ │ │ ├── stringi.rdb │ │ │ └── stringi.rdx │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── paths.rds │ │ │ ├── stringi.rdb │ │ │ └── stringi.rdx │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── include │ │ │ ├── stringi.cpp │ │ │ └── stringi.h │ │ └── libs │ │ │ ├── LICENSE │ │ │ ├── i386 │ │ │ ├── stringi.dll │ │ │ └── symbols.rds │ │ │ ├── icu4c-69.1-data-bin-l-README.md │ │ │ ├── icudt69l.dat │ │ │ └── x64 │ │ │ ├── stringi.dll │ │ │ └── symbols.rds │ │ ├── stringr │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── data.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── stringr │ │ │ ├── stringr.rdb │ │ │ └── stringr.rdx │ │ ├── data │ │ │ ├── Rdata.rdb │ │ │ ├── Rdata.rds │ │ │ └── Rdata.rdx │ │ ├── doc │ │ │ ├── index.html │ │ │ ├── regular-expressions.R │ │ │ ├── regular-expressions.Rmd │ │ │ ├── regular-expressions.html │ │ │ ├── stringr.R │ │ │ ├── stringr.Rmd │ │ │ └── stringr.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ └── logo.png │ │ │ ├── paths.rds │ │ │ ├── stringr.rdb │ │ │ └── stringr.rdx │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── htmlwidgets │ │ │ ├── lib │ │ │ └── str_view.css │ │ │ ├── str_view.js │ │ │ └── str_view.yaml │ │ ├── sys │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── NEWS │ │ ├── R │ │ │ ├── sys │ │ │ ├── sys.rdb │ │ │ └── sys.rdx │ │ ├── WORDLIST │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── paths.rds │ │ │ ├── sys.rdb │ │ │ └── sys.rdx │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── libs │ │ │ ├── i386 │ │ │ │ ├── symbols.rds │ │ │ │ └── sys.dll │ │ │ └── x64 │ │ │ │ ├── symbols.rds │ │ │ │ └── sys.dll │ │ └── utf8.txt │ │ ├── tibble │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── tibble │ │ │ ├── tibble.rdb │ │ │ └── tibble.rdx │ │ ├── doc │ │ │ ├── extending.Rmd │ │ │ ├── extending.html │ │ │ ├── formats.R │ │ │ ├── formats.Rmd │ │ │ ├── formats.html │ │ │ ├── index.html │ │ │ ├── invariants.R │ │ │ ├── invariants.Rmd │ │ │ ├── invariants.html │ │ │ ├── tibble.R │ │ │ ├── tibble.Rmd │ │ │ ├── tibble.html │ │ │ ├── types.R │ │ │ ├── types.Rmd │ │ │ └── types.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ ├── lifecycle-superseded.svg │ │ │ │ └── logo.png │ │ │ ├── paths.rds │ │ │ ├── tibble.rdb │ │ │ └── tibble.rdx │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ ├── i386 │ │ │ ├── symbols.rds │ │ │ └── tibble.dll │ │ │ └── x64 │ │ │ ├── symbols.rds │ │ │ └── tibble.dll │ │ ├── tidyselect │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── tidyselect │ │ │ ├── tidyselect.rdb │ │ │ └── tidyselect.rdx │ │ ├── doc │ │ │ ├── index.html │ │ │ ├── syntax.R │ │ │ ├── syntax.Rmd │ │ │ ├── syntax.html │ │ │ ├── tidyselect.R │ │ │ ├── tidyselect.Rmd │ │ │ └── tidyselect.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── paths.rds │ │ │ ├── tidyselect.rdb │ │ │ └── tidyselect.rdx │ │ └── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── utf8 │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── R │ │ │ ├── utf8 │ │ │ ├── utf8.rdb │ │ │ └── utf8.rdx │ │ ├── doc │ │ │ ├── index.html │ │ │ ├── utf8.Rmd │ │ │ └── utf8.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── paths.rds │ │ │ ├── utf8.rdb │ │ │ └── utf8.rdx │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ └── libs │ │ │ ├── i386 │ │ │ ├── symbols.rds │ │ │ └── utf8.dll │ │ │ └── x64 │ │ │ ├── symbols.rds │ │ │ └── utf8.dll │ │ ├── vctrs │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ │ ├── Rd.rds │ │ │ ├── features.rds │ │ │ ├── hsearch.rds │ │ │ ├── links.rds │ │ │ ├── nsInfo.rds │ │ │ ├── package.rds │ │ │ └── vignette.rds │ │ ├── NAMESPACE │ │ ├── NEWS.md │ │ ├── R │ │ │ ├── vctrs │ │ │ ├── vctrs.rdb │ │ │ └── vctrs.rdx │ │ ├── WORDLIST │ │ ├── doc │ │ │ ├── index.html │ │ │ ├── pillar.R │ │ │ ├── pillar.Rmd │ │ │ ├── pillar.html │ │ │ ├── s3-vector.R │ │ │ ├── s3-vector.Rmd │ │ │ ├── s3-vector.html │ │ │ ├── stability.R │ │ │ ├── stability.Rmd │ │ │ ├── stability.html │ │ │ ├── type-size.R │ │ │ ├── type-size.Rmd │ │ │ └── type-size.html │ │ ├── help │ │ │ ├── AnIndex │ │ │ ├── aliases.rds │ │ │ ├── figures │ │ │ │ ├── cast.png │ │ │ │ ├── coerce.png │ │ │ │ ├── combined.png │ │ │ │ ├── lifecycle-archived.svg │ │ │ │ ├── lifecycle-defunct.svg │ │ │ │ ├── lifecycle-deprecated.svg │ │ │ │ ├── lifecycle-experimental.svg │ │ │ │ ├── lifecycle-maturing.svg │ │ │ │ ├── lifecycle-questioning.svg │ │ │ │ ├── lifecycle-soft-deprecated.svg │ │ │ │ ├── lifecycle-stable.svg │ │ │ │ ├── lifecycle-superseded.svg │ │ │ │ ├── logo.png │ │ │ │ ├── sizes-recycling.png │ │ │ │ ├── vec-count-deps.png │ │ │ │ └── vec-count-deps.svg │ │ │ ├── paths.rds │ │ │ ├── vctrs.rdb │ │ │ └── vctrs.rdx │ │ ├── html │ │ │ ├── 00Index.html │ │ │ └── R.css │ │ ├── include │ │ │ ├── vctrs.c │ │ │ └── vctrs.h │ │ └── libs │ │ │ ├── i386 │ │ │ ├── symbols.rds │ │ │ └── vctrs.dll │ │ │ └── x64 │ │ │ ├── symbols.rds │ │ │ └── vctrs.dll │ │ └── yaml │ │ ├── CHANGELOG │ │ ├── DESCRIPTION │ │ ├── INDEX │ │ ├── LICENSE │ │ ├── MD5 │ │ ├── Meta │ │ ├── Rd.rds │ │ ├── features.rds │ │ ├── hsearch.rds │ │ ├── links.rds │ │ ├── nsInfo.rds │ │ └── package.rds │ │ ├── NAMESPACE │ │ ├── R │ │ ├── yaml │ │ ├── yaml.rdb │ │ └── yaml.rdx │ │ ├── THANKS │ │ ├── help │ │ ├── AnIndex │ │ ├── aliases.rds │ │ ├── paths.rds │ │ ├── yaml.rdb │ │ └── yaml.rdx │ │ ├── html │ │ ├── 00Index.html │ │ └── R.css │ │ ├── implicit.re │ │ ├── libs │ │ ├── i386 │ │ │ ├── symbols.rds │ │ │ └── yaml.dll │ │ └── x64 │ │ │ ├── symbols.rds │ │ │ └── yaml.dll │ │ └── tests │ │ ├── files │ │ ├── merge.yml │ │ └── test.yml │ │ ├── test_as_yaml.R │ │ ├── test_read_yaml.R │ │ ├── test_write_yaml.R │ │ ├── test_yaml_load.R │ │ └── test_yaml_load_file.R └── problems.md └── tests ├── testthat.R └── testthat ├── test-auth.R ├── test-perspective-api-key.R ├── test-print-progress.R ├── test-prsp-score.R ├── test-prsp-stream.R ├── test-sentence-comment.R └── test-specify-decimal.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/CRAN-RELEASE -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Fabio Votta 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/peRspective.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/R/peRspective.R -------------------------------------------------------------------------------- /R/prsp_score.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/R/prsp_score.R -------------------------------------------------------------------------------- /R/prsp_stream.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/R/prsp_stream.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | url: https://favstats.github.io/peRspective 2 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/prsp_exp_models.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/data/prsp_exp_models.rda -------------------------------------------------------------------------------- /data/prsp_models.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/data/prsp_models.rda -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/LICENSE.html -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/images/.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/images/.png -------------------------------------------------------------------------------- /docs/images/perspective2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/images/perspective2.png -------------------------------------------------------------------------------- /docs/images/prsp_stream_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/images/prsp_stream_output.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index_files/figure-html/unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/index_files/figure-html/unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /docs/index_files/figure-html/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/index_files/figure-html/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /docs/index_files/figure-html/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/index_files/figure-html/unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /docs/index_files/figure-html/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/index_files/figure-html/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /docs/index_files/figure-html/unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/index_files/figure-html/unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /docs/index_files/figure-html/unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/index_files/figure-html/unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/db_append.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/db_append.html -------------------------------------------------------------------------------- /docs/reference/db_get_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/db_get_data.html -------------------------------------------------------------------------------- /docs/reference/db_remove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/db_remove.html -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/figures/README-unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/figures/README-unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /docs/reference/figures/kittens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/figures/kittens.jpg -------------------------------------------------------------------------------- /docs/reference/figures/perspective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/figures/perspective.png -------------------------------------------------------------------------------- /docs/reference/figures/prsp_stream_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/figures/prsp_stream_output.png -------------------------------------------------------------------------------- /docs/reference/form_request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/form_request.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/msg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/msg.html -------------------------------------------------------------------------------- /docs/reference/perspective-package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/perspective-package.html -------------------------------------------------------------------------------- /docs/reference/perspective_api_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/perspective_api_key.html -------------------------------------------------------------------------------- /docs/reference/pipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/pipe.html -------------------------------------------------------------------------------- /docs/reference/print_progress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/print_progress.html -------------------------------------------------------------------------------- /docs/reference/prsp_exp_models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/prsp_exp_models.html -------------------------------------------------------------------------------- /docs/reference/prsp_models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/prsp_models.html -------------------------------------------------------------------------------- /docs/reference/prsp_score.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/prsp_score.html -------------------------------------------------------------------------------- /docs/reference/prsp_stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/prsp_stream.html -------------------------------------------------------------------------------- /docs/reference/specify_decimal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/specify_decimal.html -------------------------------------------------------------------------------- /docs/reference/unnest_scores.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/docs/reference/unnest_scores.html -------------------------------------------------------------------------------- /man/db_append.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/db_append.Rd -------------------------------------------------------------------------------- /man/db_get_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/db_get_data.Rd -------------------------------------------------------------------------------- /man/db_remove.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/db_remove.Rd -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/figures/README-unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/figures/README-unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/figures/README-unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/figures/README-unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/figures/README-unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/figures/README-unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-16-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/figures/README-unnamed-chunk-16-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/figures/README-unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/figures/README-unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /man/figures/kittens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/figures/kittens.jpg -------------------------------------------------------------------------------- /man/figures/perspective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/figures/perspective.png -------------------------------------------------------------------------------- /man/figures/prsp_stream_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/figures/prsp_stream_output.png -------------------------------------------------------------------------------- /man/form_request.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/form_request.Rd -------------------------------------------------------------------------------- /man/msg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/msg.Rd -------------------------------------------------------------------------------- /man/perspective-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/perspective-package.Rd -------------------------------------------------------------------------------- /man/perspective_api_key.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/perspective_api_key.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/print_progress.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/print_progress.Rd -------------------------------------------------------------------------------- /man/prsp_exp_models.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/prsp_exp_models.Rd -------------------------------------------------------------------------------- /man/prsp_models.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/prsp_models.Rd -------------------------------------------------------------------------------- /man/prsp_score.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/prsp_score.Rd -------------------------------------------------------------------------------- /man/prsp_stream.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/prsp_stream.Rd -------------------------------------------------------------------------------- /man/specify_decimal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/specify_decimal.Rd -------------------------------------------------------------------------------- /man/unnest_scores.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/man/unnest_scores.Rd -------------------------------------------------------------------------------- /peRspective.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/peRspective.Rproj -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/checks/libraries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/checks/libraries.csv -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/data.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/data.sqlite -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2015 2 | COPYRIGHT HOLDER: RStudio 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/Meta/features.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/Meta/features.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/Meta/hsearch.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/Meta/hsearch.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/Meta/links.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/Meta/links.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/Meta/nsInfo.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/Meta/nsInfo.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/Meta/package.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/Meta/package.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/R/R6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/R/R6 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/R/R6.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/R/R6.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/R/R6.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/R/R6.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/help/R6.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/help/R6.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/help/R6.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/help/R6.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/help/aliases.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/help/aliases.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/help/paths.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/help/paths.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/html/00Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/html/00Index.html -------------------------------------------------------------------------------- /revdep/library/peRspective/new/R6/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/R6/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/COPYRIGHTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/COPYRIGHTS -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/FAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/FAQ.html -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/LICENSE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/Meta/hsearch.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/Meta/hsearch.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/Meta/links.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/Meta/links.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/Meta/nsInfo.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/Meta/nsInfo.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/Meta/package.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/Meta/package.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/R/XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/R/XML -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/R/XML.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/R/XML.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/R/XML.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/R/XML.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/examples/CIS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/examples/CIS.R -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/examples/DiGIR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/examples/DiGIR.R -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/examples/README -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/examples/ecb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/examples/ecb.R -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/examples/event.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/examples/event.R -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/examples/event.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/examples/event.S -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/examples/faq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/examples/faq.R -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/examples/mi1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/examples/mi1.R -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/examples/oop.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/examples/oop.S -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/examples/pi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/examples/pi.xml -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/examples/pmml.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/examples/pmml.R -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/examples/rcode.xsl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/examples/svg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/examples/svg.R -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/examples/xpath.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/examples/xpath.R -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/help/XML.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/help/XML.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/help/XML.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/help/XML.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/help/aliases.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/help/aliases.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/help/paths.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/help/paths.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/XML/libs/x64/XML.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/XML/libs/x64/XML.dll -------------------------------------------------------------------------------- /revdep/library/peRspective/new/askpass/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/askpass/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/askpass/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/askpass/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/askpass/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: Jeroen Ooms 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/askpass/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/askpass/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/askpass/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/askpass/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/askpass/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/askpass/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/askpass/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/askpass/NEWS -------------------------------------------------------------------------------- /revdep/library/peRspective/new/askpass/R/askpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/askpass/R/askpass -------------------------------------------------------------------------------- /revdep/library/peRspective/new/askpass/WORDLIST: -------------------------------------------------------------------------------- 1 | CMD 2 | IDEs 3 | MacOS 4 | tcltk 5 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/askpass/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/askpass/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/new/askpass/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/askpass/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/askpass/mac-askpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/askpass/mac-askpass -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Rstudio Pbc 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/Meta/hsearch.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/Meta/hsearch.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/Meta/links.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/Meta/links.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/Meta/nsInfo.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/Meta/nsInfo.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/Meta/package.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/Meta/package.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/R/cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/R/cli -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/R/cli.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/R/cli.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/R/cli.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/R/cli.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/R/sysdata.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/R/sysdata.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/R/sysdata.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/R/sysdata.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/help/aliases.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/help/aliases.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/help/cli.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/help/cli.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/help/cli.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/help/cli.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/help/paths.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/help/paths.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/libs/x64/cli.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/libs/x64/cli.dll -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/logo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/logo.txt -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/scripts/news.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/scripts/news.R -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/scripts/search.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/scripts/search.R -------------------------------------------------------------------------------- /revdep/library/peRspective/new/cli/scripts/up.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/cli/scripts/up.R -------------------------------------------------------------------------------- /revdep/library/peRspective/new/crayon/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/crayon/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/crayon/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/crayon/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/crayon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/crayon/LICENSE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/crayon/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/crayon/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/crayon/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/crayon/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/crayon/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/crayon/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/crayon/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/crayon/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/new/crayon/R/crayon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/crayon/R/crayon -------------------------------------------------------------------------------- /revdep/library/peRspective/new/crayon/R/crayon.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/crayon/R/crayon.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/crayon/R/crayon.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/crayon/R/crayon.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/crayon/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/crayon/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/new/crayon/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/crayon/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Jeroen Ooms; RStudio 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/Meta/links.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/Meta/links.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/Meta/nsInfo.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/Meta/nsInfo.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/NEWS -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/R/curl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/R/curl -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/R/curl.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/R/curl.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/R/curl.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/R/curl.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/R/sysdata.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/R/sysdata.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/R/sysdata.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/R/sysdata.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/WORDLIST -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/doc/index.html -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/doc/intro.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/doc/intro.R -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/doc/intro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/doc/intro.Rmd -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/doc/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/doc/intro.html -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/doc/windows.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/doc/windows.R -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/doc/windows.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/doc/windows.Rmd -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/help/curl.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/help/curl.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/help/curl.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/help/curl.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/help/paths.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/help/paths.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/curl/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/curl/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/data.table/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/data.table/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/data.table/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/data.table/LICENSE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/data.table/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/data.table/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/data.table/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/data.table/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/data.table/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/data.table/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/new/data.table/cc: -------------------------------------------------------------------------------- 1 | CC=gcc -std=gnu99 2 | CFLAGS=-O2 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/data.table/tests/issue_1087_utf8_bom.csv: -------------------------------------------------------------------------------- 1 | a,b,c 2 | 1,2,3 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/data.table/tests/issue_1330_fread.txt: -------------------------------------------------------------------------------- 1 | a b 2 | 1 1 3 | 2 2 4 | 5 | 3 3 6 | 4 4 7 | 8 | 5 5 9 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/data.table/tests/issue_563_fread.txt: -------------------------------------------------------------------------------- 1 | A,B 2 | ą,ž 3 | ū,į 4 | ų,ė 5 | š,ę 6 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/LICENSE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/Meta/data.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/Meta/data.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/Meta/links.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/Meta/links.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/R/dplyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/R/dplyr -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/R/dplyr.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/R/dplyr.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/R/dplyr.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/R/dplyr.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/data/Rdata.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/data/Rdata.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/data/Rdata.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/data/Rdata.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/data/Rdata.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/data/Rdata.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/doc/base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/doc/base.R -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/doc/base.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/doc/base.Rmd -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/doc/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/doc/base.html -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/doc/colwise.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/doc/colwise.R -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/doc/dplyr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/doc/dplyr.R -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/doc/dplyr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/doc/dplyr.Rmd -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/doc/dplyr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/doc/dplyr.html -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/doc/grouping.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/doc/grouping.R -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/doc/index.html -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/doc/rowwise.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/doc/rowwise.R -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/help/dplyr.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/help/dplyr.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/help/dplyr.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/help/dplyr.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/help/paths.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/help/paths.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/dplyr/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/dplyr/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/ellipsis/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/ellipsis/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/ellipsis/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/ellipsis/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/ellipsis/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: ellipsis authors 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/ellipsis/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/ellipsis/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/ellipsis/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/ellipsis/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/ellipsis/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/ellipsis/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/ellipsis/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/ellipsis/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/new/ellipsis/R/ellipsis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/ellipsis/R/ellipsis -------------------------------------------------------------------------------- /revdep/library/peRspective/new/ellipsis/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/ellipsis/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/fansi/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/fansi/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/fansi/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/fansi/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/fansi/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/fansi/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/fansi/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/fansi/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/fansi/Meta/links.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/fansi/Meta/links.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/fansi/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/fansi/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/fansi/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/fansi/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/new/fansi/R/fansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/fansi/R/fansi -------------------------------------------------------------------------------- /revdep/library/peRspective/new/fansi/R/fansi.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/fansi/R/fansi.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/fansi/R/fansi.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/fansi/R/fansi.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/fansi/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/fansi/doc/index.html -------------------------------------------------------------------------------- /revdep/library/peRspective/new/fansi/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/fansi/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/new/fansi/help/fansi.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/fansi/help/fansi.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/fansi/help/fansi.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/fansi/help/fansi.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/fansi/help/paths.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/fansi/help/paths.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/fansi/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/fansi/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/generics/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/generics/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/generics/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/generics/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/generics/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: RStudio 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/generics/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/generics/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/generics/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/generics/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/generics/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/generics/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/generics/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/generics/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/new/generics/R/generics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/generics/R/generics -------------------------------------------------------------------------------- /revdep/library/peRspective/new/generics/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/generics/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/glue/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/glue/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/glue/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/glue/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/glue/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Jim Hester 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/glue/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/glue/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/glue/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/glue/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/glue/Meta/links.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/glue/Meta/links.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/glue/Meta/nsInfo.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/glue/Meta/nsInfo.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/glue/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/glue/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/glue/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/glue/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/new/glue/R/glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/glue/R/glue -------------------------------------------------------------------------------- /revdep/library/peRspective/new/glue/R/glue.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/glue/R/glue.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/glue/R/glue.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/glue/R/glue.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/glue/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/glue/doc/index.html -------------------------------------------------------------------------------- /revdep/library/peRspective/new/glue/doc/speed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/glue/doc/speed.R -------------------------------------------------------------------------------- /revdep/library/peRspective/new/glue/doc/speed.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/glue/doc/speed.Rmd -------------------------------------------------------------------------------- /revdep/library/peRspective/new/glue/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/glue/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/new/glue/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/glue/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/httr/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/httr/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/httr/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/httr/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/httr/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2014 2 | COPYRIGHT HOLDER: Hadley Wickham; RStudio 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/httr/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/httr/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/httr/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/httr/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/httr/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/httr/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/httr/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/httr/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/new/httr/R/httr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/httr/R/httr -------------------------------------------------------------------------------- /revdep/library/peRspective/new/httr/R/httr.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/httr/R/httr.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/httr/R/httr.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/httr/R/httr.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/httr/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/httr/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/new/httr/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/httr/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/jsonlite/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/jsonlite/CITATION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/jsonlite/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/jsonlite/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/jsonlite/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Jeroen Ooms 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/jsonlite/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/jsonlite/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/jsonlite/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/jsonlite/NEWS -------------------------------------------------------------------------------- /revdep/library/peRspective/new/lifecycle/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/lifecycle/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/lifecycle/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: RStudio 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/lifecycle/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/lifecycle/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/lifecycle/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/lifecycle/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/new/magrittr/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/magrittr/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/magrittr/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Stefan Milton Bache and Hadley Wickham 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/magrittr/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/magrittr/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/magrittr/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/magrittr/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/new/magrittr/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/magrittr/logo.png -------------------------------------------------------------------------------- /revdep/library/peRspective/new/magrittr/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/magrittr/logo.svg -------------------------------------------------------------------------------- /revdep/library/peRspective/new/mime/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/mime/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/mime/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/mime/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/mime/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/mime/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/mime/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/mime/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/mime/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/mime/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/mime/NEWS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/mime/NEWS.Rd -------------------------------------------------------------------------------- /revdep/library/peRspective/new/mime/R/mime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/mime/R/mime -------------------------------------------------------------------------------- /revdep/library/peRspective/new/mime/R/mime.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/mime/R/mime.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/mime/R/mime.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/mime/R/mime.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/mime/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/mime/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/new/mime/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/mime/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/openssl/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/openssl/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/openssl/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Jeroen Ooms 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/openssl/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/openssl/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/openssl/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/openssl/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/openssl/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/openssl/NEWS -------------------------------------------------------------------------------- /revdep/library/peRspective/new/openssl/R/openssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/openssl/R/openssl -------------------------------------------------------------------------------- /revdep/library/peRspective/new/peRspective/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/peRspective/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/peRspective/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Fabio Votta 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/pillar/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/pillar/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/pillar/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: pillar authors 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/pillar/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/pillar/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/pillar/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/pillar/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/pillar/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/pillar/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/new/pillar/R/pillar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/pillar/R/pillar -------------------------------------------------------------------------------- /revdep/library/peRspective/new/pillar/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/pillar/WORDLIST -------------------------------------------------------------------------------- /revdep/library/peRspective/new/pillar/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/pillar/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/pkgconfig/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/pkgconfig/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/pkgconfig/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2014--2017 2 | COPYRIGHT HOLDER: Gábor Csárdi 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/pkgconfig/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/pkgconfig/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/purrr/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/purrr/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/purrr/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/purrr/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/purrr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/purrr/LICENSE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/purrr/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/purrr/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/purrr/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/purrr/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/purrr/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/purrr/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/purrr/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/purrr/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/new/purrr/R/purrr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/purrr/R/purrr -------------------------------------------------------------------------------- /revdep/library/peRspective/new/purrr/R/purrr.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/purrr/R/purrr.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/purrr/R/purrr.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/purrr/R/purrr.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/purrr/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/purrr/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlang/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/rlang/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlang/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/rlang/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlang/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: rlang authors 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlang/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/rlang/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlang/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/rlang/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlang/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/rlang/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlang/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/rlang/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlang/R/rlang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/rlang/R/rlang -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlang/R/rlang.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/rlang/R/rlang.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlang/R/rlang.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/rlang/R/rlang.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlang/backtrace-ver: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlang/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/rlang/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlist/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/rlist/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlist/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/rlist/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlist/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2014 2 | COPYRIGHT HOLDER: Kun Ren 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlist/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/rlist/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlist/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/rlist/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlist/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/rlist/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlist/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/rlist/NEWS -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlist/R/rlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/rlist/R/rlist -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlist/R/rlist.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/rlist/R/rlist.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlist/R/rlist.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/rlist/R/rlist.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/rlist/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/rlist/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/stringi/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/stringi/AUTHORS -------------------------------------------------------------------------------- /revdep/library/peRspective/new/stringi/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/stringi/CITATION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/stringi/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/stringi/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/stringi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/stringi/LICENSE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/stringi/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/stringi/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/stringi/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/stringi/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/stringi/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/stringi/NEWS -------------------------------------------------------------------------------- /revdep/library/peRspective/new/stringi/R/stringi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/stringi/R/stringi -------------------------------------------------------------------------------- /revdep/library/peRspective/new/stringr/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/stringr/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/stringr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/stringr/LICENSE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/stringr/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/stringr/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/stringr/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/stringr/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/stringr/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/stringr/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/new/stringr/R/stringr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/stringr/R/stringr -------------------------------------------------------------------------------- /revdep/library/peRspective/new/sys/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/sys/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/sys/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/sys/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/sys/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Jeroen Ooms 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/sys/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/sys/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/sys/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/sys/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/sys/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/sys/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/sys/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/sys/NEWS -------------------------------------------------------------------------------- /revdep/library/peRspective/new/sys/R/sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/sys/R/sys -------------------------------------------------------------------------------- /revdep/library/peRspective/new/sys/R/sys.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/sys/R/sys.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/sys/R/sys.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/sys/R/sys.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/sys/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/sys/WORDLIST -------------------------------------------------------------------------------- /revdep/library/peRspective/new/sys/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/sys/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/new/sys/help/sys.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/sys/help/sys.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/sys/help/sys.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/sys/help/sys.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/sys/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/sys/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/sys/utf8.txt: -------------------------------------------------------------------------------- 1 | すし,寿司,鮨 2 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/tibble/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/tibble/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/tibble/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/tibble/LICENSE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/tibble/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/tibble/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/tibble/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/tibble/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/tibble/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/tibble/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/new/tibble/R/tibble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/tibble/R/tibble -------------------------------------------------------------------------------- /revdep/library/peRspective/new/tibble/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/tibble/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/tidyselect/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/tidyselect/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/tidyselect/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: tidyselect authors 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/tidyselect/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/tidyselect/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/utf8/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/utf8/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/utf8/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/utf8/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/utf8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/utf8/LICENSE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/utf8/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/utf8/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/utf8/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/utf8/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/utf8/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/utf8/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/utf8/R/utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/utf8/R/utf8 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/utf8/R/utf8.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/utf8/R/utf8.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/utf8/R/utf8.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/utf8/R/utf8.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/utf8/doc/utf8.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/utf8/doc/utf8.Rmd -------------------------------------------------------------------------------- /revdep/library/peRspective/new/utf8/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/utf8/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/new/utf8/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/utf8/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/vctrs/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/vctrs/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/vctrs/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/vctrs/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/vctrs/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: vctrs authors 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/vctrs/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/vctrs/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/vctrs/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/vctrs/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/vctrs/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/vctrs/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/vctrs/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/vctrs/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/new/vctrs/R/vctrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/vctrs/R/vctrs -------------------------------------------------------------------------------- /revdep/library/peRspective/new/vctrs/R/vctrs.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/vctrs/R/vctrs.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/vctrs/R/vctrs.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/vctrs/R/vctrs.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/vctrs/WORDLIST: -------------------------------------------------------------------------------- 1 | vectorised 2 | -------------------------------------------------------------------------------- /revdep/library/peRspective/new/vctrs/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/vctrs/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/yaml/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/yaml/CHANGELOG -------------------------------------------------------------------------------- /revdep/library/peRspective/new/yaml/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/yaml/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/new/yaml/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/yaml/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/new/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/yaml/LICENSE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/yaml/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/yaml/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/new/yaml/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/yaml/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/new/yaml/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/yaml/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/new/yaml/R/yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/yaml/R/yaml -------------------------------------------------------------------------------- /revdep/library/peRspective/new/yaml/R/yaml.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/yaml/R/yaml.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/new/yaml/R/yaml.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/yaml/R/yaml.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/new/yaml/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/yaml/THANKS -------------------------------------------------------------------------------- /revdep/library/peRspective/new/yaml/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/yaml/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/new/yaml/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/yaml/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/new/yaml/implicit.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/new/yaml/implicit.re -------------------------------------------------------------------------------- /revdep/library/peRspective/old/R6/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/R6/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/old/R6/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/R6/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/R6/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2015 2 | COPYRIGHT HOLDER: RStudio 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/R6/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/R6/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/R6/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/R6/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/old/R6/Meta/links.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/R6/Meta/links.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/old/R6/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/R6/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/R6/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/R6/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/old/R6/R/R6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/R6/R/R6 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/R6/R/R6.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/R6/R/R6.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/R6/R/R6.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/R6/R/R6.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/R6/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/R6/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/old/R6/help/R6.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/R6/help/R6.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/R6/help/R6.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/R6/help/R6.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/R6/help/paths.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/R6/help/paths.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/old/R6/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/R6/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/old/XML/COPYRIGHTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/XML/COPYRIGHTS -------------------------------------------------------------------------------- /revdep/library/peRspective/old/XML/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/XML/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/old/XML/FAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/XML/FAQ.html -------------------------------------------------------------------------------- /revdep/library/peRspective/old/XML/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/XML/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/XML/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/XML/LICENSE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/XML/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/XML/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/XML/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/XML/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/old/XML/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/XML/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/XML/R/XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/XML/R/XML -------------------------------------------------------------------------------- /revdep/library/peRspective/old/XML/R/XML.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/XML/R/XML.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/XML/R/XML.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/XML/R/XML.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/XML/examples/rcode.xsl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/XML/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/XML/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/old/XML/help/XML.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/XML/help/XML.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/XML/help/XML.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/XML/help/XML.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/XML/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/XML/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/old/askpass/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/askpass/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/askpass/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: Jeroen Ooms 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/askpass/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/askpass/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/askpass/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/askpass/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/askpass/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/askpass/NEWS -------------------------------------------------------------------------------- /revdep/library/peRspective/old/askpass/R/askpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/askpass/R/askpass -------------------------------------------------------------------------------- /revdep/library/peRspective/old/askpass/WORDLIST: -------------------------------------------------------------------------------- 1 | CMD 2 | IDEs 3 | MacOS 4 | tcltk 5 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/cli/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/cli/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/old/cli/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/cli/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/cli/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Rstudio Pbc 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/cli/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/cli/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/cli/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/cli/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/old/cli/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/cli/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/cli/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/cli/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/old/cli/R/cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/cli/R/cli -------------------------------------------------------------------------------- /revdep/library/peRspective/old/cli/R/cli.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/cli/R/cli.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/cli/R/cli.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/cli/R/cli.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/cli/R/sysdata.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/cli/R/sysdata.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/cli/R/sysdata.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/cli/R/sysdata.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/cli/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/cli/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/old/cli/help/cli.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/cli/help/cli.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/cli/help/cli.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/cli/help/cli.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/cli/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/cli/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/old/cli/logo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/cli/logo.txt -------------------------------------------------------------------------------- /revdep/library/peRspective/old/cli/scripts/up.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/cli/scripts/up.R -------------------------------------------------------------------------------- /revdep/library/peRspective/old/crayon/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/crayon/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/crayon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/crayon/LICENSE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/crayon/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/crayon/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/crayon/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/crayon/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/crayon/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/crayon/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/old/crayon/R/crayon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/crayon/R/crayon -------------------------------------------------------------------------------- /revdep/library/peRspective/old/crayon/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/crayon/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/old/curl/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/curl/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/old/curl/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/curl/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/curl/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Jeroen Ooms; RStudio 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/curl/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/curl/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/curl/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/curl/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/old/curl/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/curl/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/curl/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/curl/NEWS -------------------------------------------------------------------------------- /revdep/library/peRspective/old/curl/R/curl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/curl/R/curl -------------------------------------------------------------------------------- /revdep/library/peRspective/old/curl/R/curl.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/curl/R/curl.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/curl/R/curl.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/curl/R/curl.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/curl/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/curl/WORDLIST -------------------------------------------------------------------------------- /revdep/library/peRspective/old/curl/doc/intro.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/curl/doc/intro.R -------------------------------------------------------------------------------- /revdep/library/peRspective/old/curl/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/curl/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/old/curl/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/curl/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/old/data.table/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/data.table/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/data.table/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/data.table/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/data.table/cc: -------------------------------------------------------------------------------- 1 | CC=gcc -std=gnu99 2 | CFLAGS=-O2 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/data.table/tests/issue_1087_utf8_bom.csv: -------------------------------------------------------------------------------- 1 | a,b,c 2 | 1,2,3 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/data.table/tests/issue_1330_fread.txt: -------------------------------------------------------------------------------- 1 | a b 2 | 1 1 3 | 2 2 4 | 5 | 3 3 6 | 4 4 7 | 8 | 5 5 9 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/data.table/tests/issue_563_fread.txt: -------------------------------------------------------------------------------- 1 | A,B 2 | ą,ž 3 | ū,į 4 | ų,ė 5 | š,ę 6 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/dplyr/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/dplyr/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/old/dplyr/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/dplyr/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/dplyr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/dplyr/LICENSE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/dplyr/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/dplyr/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/dplyr/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/dplyr/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/old/dplyr/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/dplyr/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/dplyr/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/dplyr/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/old/dplyr/R/dplyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/dplyr/R/dplyr -------------------------------------------------------------------------------- /revdep/library/peRspective/old/dplyr/R/dplyr.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/dplyr/R/dplyr.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/dplyr/R/dplyr.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/dplyr/R/dplyr.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/dplyr/doc/base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/dplyr/doc/base.R -------------------------------------------------------------------------------- /revdep/library/peRspective/old/dplyr/doc/dplyr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/dplyr/doc/dplyr.R -------------------------------------------------------------------------------- /revdep/library/peRspective/old/dplyr/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/dplyr/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/old/ellipsis/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/ellipsis/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/ellipsis/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: ellipsis authors 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/ellipsis/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/ellipsis/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/ellipsis/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/ellipsis/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/old/fansi/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/fansi/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/old/fansi/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/fansi/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/fansi/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/fansi/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/fansi/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/fansi/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/old/fansi/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/fansi/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/fansi/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/fansi/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/old/fansi/R/fansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/fansi/R/fansi -------------------------------------------------------------------------------- /revdep/library/peRspective/old/fansi/R/fansi.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/fansi/R/fansi.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/fansi/R/fansi.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/fansi/R/fansi.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/fansi/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/fansi/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/old/generics/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/generics/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/generics/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: RStudio 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/generics/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/generics/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/generics/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/generics/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/old/glue/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/glue/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/old/glue/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/glue/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/glue/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Jim Hester 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/glue/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/glue/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/glue/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/glue/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/old/glue/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/glue/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/glue/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/glue/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/old/glue/R/glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/glue/R/glue -------------------------------------------------------------------------------- /revdep/library/peRspective/old/glue/R/glue.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/glue/R/glue.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/glue/R/glue.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/glue/R/glue.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/glue/doc/speed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/glue/doc/speed.R -------------------------------------------------------------------------------- /revdep/library/peRspective/old/glue/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/glue/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/old/glue/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/glue/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/old/httr/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/httr/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/old/httr/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/httr/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/httr/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2014 2 | COPYRIGHT HOLDER: Hadley Wickham; RStudio 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/httr/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/httr/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/httr/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/httr/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/old/httr/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/httr/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/httr/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/httr/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/old/httr/R/httr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/httr/R/httr -------------------------------------------------------------------------------- /revdep/library/peRspective/old/httr/R/httr.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/httr/R/httr.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/httr/R/httr.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/httr/R/httr.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/httr/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/httr/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/old/httr/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/httr/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/old/jsonlite/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/jsonlite/CITATION -------------------------------------------------------------------------------- /revdep/library/peRspective/old/jsonlite/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/jsonlite/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/jsonlite/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Jeroen Ooms 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/jsonlite/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/jsonlite/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/jsonlite/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/jsonlite/NEWS -------------------------------------------------------------------------------- /revdep/library/peRspective/old/lifecycle/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/lifecycle/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/lifecycle/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: RStudio 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/lifecycle/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/lifecycle/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/lifecycle/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/lifecycle/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/old/magrittr/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/magrittr/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/magrittr/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Stefan Milton Bache and Hadley Wickham 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/magrittr/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/magrittr/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/magrittr/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/magrittr/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/old/magrittr/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/magrittr/logo.png -------------------------------------------------------------------------------- /revdep/library/peRspective/old/magrittr/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/magrittr/logo.svg -------------------------------------------------------------------------------- /revdep/library/peRspective/old/mime/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/mime/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/old/mime/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/mime/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/mime/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/mime/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/mime/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/mime/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/old/mime/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/mime/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/mime/NEWS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/mime/NEWS.Rd -------------------------------------------------------------------------------- /revdep/library/peRspective/old/mime/R/mime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/mime/R/mime -------------------------------------------------------------------------------- /revdep/library/peRspective/old/mime/R/mime.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/mime/R/mime.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/mime/R/mime.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/mime/R/mime.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/mime/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/mime/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/old/mime/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/mime/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/old/openssl/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/openssl/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/openssl/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Jeroen Ooms 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/openssl/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/openssl/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/openssl/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/openssl/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/openssl/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/openssl/NEWS -------------------------------------------------------------------------------- /revdep/library/peRspective/old/openssl/R/openssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/openssl/R/openssl -------------------------------------------------------------------------------- /revdep/library/peRspective/old/peRspective/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/peRspective/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/peRspective/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Fabio Votta 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/peRspective/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/peRspective/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/pillar/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/pillar/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/pillar/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: pillar authors 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/pillar/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/pillar/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/pillar/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/pillar/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/pillar/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/pillar/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/old/pillar/R/pillar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/pillar/R/pillar -------------------------------------------------------------------------------- /revdep/library/peRspective/old/pillar/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/pillar/WORDLIST -------------------------------------------------------------------------------- /revdep/library/peRspective/old/pillar/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/pillar/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/old/pkgconfig/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/pkgconfig/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/pkgconfig/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2014--2017 2 | COPYRIGHT HOLDER: Gábor Csárdi 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/pkgconfig/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/pkgconfig/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/purrr/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/purrr/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/old/purrr/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/purrr/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/purrr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/purrr/LICENSE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/purrr/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/purrr/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/purrr/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/purrr/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/old/purrr/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/purrr/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/purrr/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/purrr/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/old/purrr/R/purrr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/purrr/R/purrr -------------------------------------------------------------------------------- /revdep/library/peRspective/old/purrr/R/purrr.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/purrr/R/purrr.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/purrr/R/purrr.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/purrr/R/purrr.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/purrr/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/purrr/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlang/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/rlang/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlang/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/rlang/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlang/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: rlang authors 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlang/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/rlang/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlang/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/rlang/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlang/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/rlang/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlang/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/rlang/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlang/R/rlang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/rlang/R/rlang -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlang/R/rlang.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/rlang/R/rlang.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlang/R/rlang.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/rlang/R/rlang.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlang/backtrace-ver: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlang/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/rlang/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlist/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/rlist/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlist/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/rlist/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlist/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2014 2 | COPYRIGHT HOLDER: Kun Ren 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlist/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/rlist/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlist/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/rlist/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlist/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/rlist/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlist/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/rlist/NEWS -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlist/R/rlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/rlist/R/rlist -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlist/R/rlist.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/rlist/R/rlist.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlist/R/rlist.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/rlist/R/rlist.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/rlist/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/rlist/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/old/stringi/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/stringi/AUTHORS -------------------------------------------------------------------------------- /revdep/library/peRspective/old/stringi/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/stringi/CITATION -------------------------------------------------------------------------------- /revdep/library/peRspective/old/stringi/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/stringi/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/stringi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/stringi/LICENSE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/stringi/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/stringi/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/stringi/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/stringi/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/stringi/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/stringi/NEWS -------------------------------------------------------------------------------- /revdep/library/peRspective/old/stringi/R/stringi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/stringi/R/stringi -------------------------------------------------------------------------------- /revdep/library/peRspective/old/stringr/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/stringr/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/stringr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/stringr/LICENSE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/stringr/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/stringr/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/stringr/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/stringr/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/stringr/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/stringr/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/old/stringr/R/stringr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/stringr/R/stringr -------------------------------------------------------------------------------- /revdep/library/peRspective/old/sys/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/sys/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/old/sys/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/sys/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/sys/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Jeroen Ooms 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/sys/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/sys/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/sys/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/sys/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/old/sys/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/sys/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/sys/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/sys/NEWS -------------------------------------------------------------------------------- /revdep/library/peRspective/old/sys/R/sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/sys/R/sys -------------------------------------------------------------------------------- /revdep/library/peRspective/old/sys/R/sys.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/sys/R/sys.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/sys/R/sys.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/sys/R/sys.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/sys/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/sys/WORDLIST -------------------------------------------------------------------------------- /revdep/library/peRspective/old/sys/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/sys/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/old/sys/help/sys.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/sys/help/sys.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/sys/help/sys.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/sys/help/sys.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/sys/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/sys/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/old/sys/utf8.txt: -------------------------------------------------------------------------------- 1 | すし,寿司,鮨 2 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/tibble/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/tibble/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/tibble/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/tibble/LICENSE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/tibble/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/tibble/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/tibble/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/tibble/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/tibble/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/tibble/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/old/tibble/R/tibble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/tibble/R/tibble -------------------------------------------------------------------------------- /revdep/library/peRspective/old/tibble/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/tibble/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/old/tidyselect/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/tidyselect/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/tidyselect/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: tidyselect authors 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/tidyselect/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/tidyselect/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/utf8/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/utf8/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/old/utf8/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/utf8/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/utf8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/utf8/LICENSE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/utf8/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/utf8/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/utf8/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/utf8/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/old/utf8/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/utf8/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/utf8/R/utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/utf8/R/utf8 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/utf8/R/utf8.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/utf8/R/utf8.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/utf8/R/utf8.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/utf8/R/utf8.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/utf8/doc/utf8.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/utf8/doc/utf8.Rmd -------------------------------------------------------------------------------- /revdep/library/peRspective/old/utf8/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/utf8/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/old/utf8/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/utf8/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/old/vctrs/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/vctrs/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/old/vctrs/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/vctrs/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/vctrs/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: vctrs authors 3 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/vctrs/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/vctrs/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/vctrs/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/vctrs/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/old/vctrs/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/vctrs/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/vctrs/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/vctrs/NEWS.md -------------------------------------------------------------------------------- /revdep/library/peRspective/old/vctrs/R/vctrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/vctrs/R/vctrs -------------------------------------------------------------------------------- /revdep/library/peRspective/old/vctrs/R/vctrs.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/vctrs/R/vctrs.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/vctrs/R/vctrs.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/vctrs/R/vctrs.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/vctrs/WORDLIST: -------------------------------------------------------------------------------- 1 | vectorised 2 | -------------------------------------------------------------------------------- /revdep/library/peRspective/old/vctrs/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/vctrs/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/old/yaml/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/yaml/CHANGELOG -------------------------------------------------------------------------------- /revdep/library/peRspective/old/yaml/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/yaml/DESCRIPTION -------------------------------------------------------------------------------- /revdep/library/peRspective/old/yaml/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/yaml/INDEX -------------------------------------------------------------------------------- /revdep/library/peRspective/old/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/yaml/LICENSE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/yaml/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/yaml/MD5 -------------------------------------------------------------------------------- /revdep/library/peRspective/old/yaml/Meta/Rd.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/yaml/Meta/Rd.rds -------------------------------------------------------------------------------- /revdep/library/peRspective/old/yaml/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/yaml/NAMESPACE -------------------------------------------------------------------------------- /revdep/library/peRspective/old/yaml/R/yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/yaml/R/yaml -------------------------------------------------------------------------------- /revdep/library/peRspective/old/yaml/R/yaml.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/yaml/R/yaml.rdb -------------------------------------------------------------------------------- /revdep/library/peRspective/old/yaml/R/yaml.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/yaml/R/yaml.rdx -------------------------------------------------------------------------------- /revdep/library/peRspective/old/yaml/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/yaml/THANKS -------------------------------------------------------------------------------- /revdep/library/peRspective/old/yaml/help/AnIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/yaml/help/AnIndex -------------------------------------------------------------------------------- /revdep/library/peRspective/old/yaml/html/R.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/yaml/html/R.css -------------------------------------------------------------------------------- /revdep/library/peRspective/old/yaml/implicit.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/revdep/library/peRspective/old/yaml/implicit.re -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-auth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/tests/testthat/test-auth.R -------------------------------------------------------------------------------- /tests/testthat/test-perspective-api-key.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/tests/testthat/test-perspective-api-key.R -------------------------------------------------------------------------------- /tests/testthat/test-print-progress.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/tests/testthat/test-print-progress.R -------------------------------------------------------------------------------- /tests/testthat/test-prsp-score.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/tests/testthat/test-prsp-score.R -------------------------------------------------------------------------------- /tests/testthat/test-prsp-stream.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/tests/testthat/test-prsp-stream.R -------------------------------------------------------------------------------- /tests/testthat/test-sentence-comment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/tests/testthat/test-sentence-comment.R -------------------------------------------------------------------------------- /tests/testthat/test-specify-decimal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/favstats/peRspective/HEAD/tests/testthat/test-specify-decimal.R --------------------------------------------------------------------------------