gitextract_5kkl1r2r/ ├── .Rbuildignore ├── .github/ │ ├── .gitignore │ └── workflows/ │ ├── R-CMD-check.yaml │ └── test-coverage.yaml ├── .gitignore ├── AGENTS.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R/ │ ├── RcppExports.R │ ├── breaks-by-group-size.R │ ├── breaks-by-width.R │ ├── breaks-impl.R │ ├── breaks-misc.R │ ├── breaks.R │ ├── categorize.R │ ├── chop-by-group-size.R │ ├── chop-by-width.R │ ├── chop-isolates.R │ ├── chop-misc.R │ ├── chop.R │ ├── labels-datetime.R │ ├── labels-glue.R │ ├── labels-impl.R │ ├── labels-single.R │ ├── labels.R │ ├── non-standard-types-doc.R │ ├── santoku-cast.R │ ├── santoku-package.R │ ├── tab.R │ └── utils.R ├── README.Rmd ├── README.md ├── TODO.md ├── _pkgdown.yml ├── advantages.Rmd ├── codecov.yml ├── cran-comments.md ├── docs/ │ ├── 404.html │ ├── 404.md │ ├── AGENTS.html │ ├── AGENTS.md │ ├── CLAUDE.html │ ├── CLAUDE.md │ ├── LICENSE-text.html │ ├── LICENSE-text.md │ ├── LICENSE.html │ ├── LICENSE.md │ ├── TODO.html │ ├── TODO.md │ ├── articles/ │ │ ├── index.html │ │ ├── index.md │ │ ├── santoku.html │ │ ├── santoku.md │ │ ├── santoku_files/ │ │ │ ├── accessible-code-block-0.0.1/ │ │ │ │ └── empty-anchor.js │ │ │ ├── header-attrs-2.11/ │ │ │ │ └── header-attrs.js │ │ │ └── header-attrs-2.8/ │ │ │ └── header-attrs.js │ │ ├── website-articles/ │ │ │ ├── performance.html │ │ │ ├── performance.md │ │ │ └── performance_files/ │ │ │ ├── accessible-code-block-0.0.1/ │ │ │ │ └── empty-anchor.js │ │ │ ├── header-attrs-2.11/ │ │ │ │ └── header-attrs.js │ │ │ └── header-attrs-2.8/ │ │ │ └── header-attrs.js │ │ ├── whats-new-in-0-9-0.html │ │ └── whats-new-in-0-9-0.md │ ├── authors.html │ ├── authors.md │ ├── bootstrap-toc.css │ ├── bootstrap-toc.js │ ├── deps/ │ │ ├── _Courier Prime-0.4.0/ │ │ │ └── font.css │ │ ├── bootstrap-5.1.0/ │ │ │ └── font.css │ │ ├── bootstrap-5.1.3/ │ │ │ └── font.css │ │ ├── bootstrap-5.2.2/ │ │ │ └── font.css │ │ ├── bootstrap-5.3.1/ │ │ │ └── font.css │ │ ├── data-deps.txt │ │ ├── font-awesome-6.5.2/ │ │ │ └── css/ │ │ │ ├── all.css │ │ │ └── v4-shims.css │ │ └── jquery-3.6.0/ │ │ └── jquery-3.6.0.js │ ├── docsearch.css │ ├── docsearch.js │ ├── extra.css │ ├── index.html │ ├── index.md │ ├── katex-auto.js │ ├── lightswitch.js │ ├── llms.txt │ ├── news/ │ │ ├── index.html │ │ └── index.md │ ├── pkgdown.css │ ├── pkgdown.js │ ├── pkgdown.yml │ ├── reference/ │ │ ├── breaks-class.html │ │ ├── breaks-class.md │ │ ├── brk-left-right.html │ │ ├── brk-left-right.md │ │ ├── brk_default.html │ │ ├── brk_default.md │ │ ├── brk_equally.html │ │ ├── brk_evenly.html │ │ ├── brk_fn.html │ │ ├── brk_manual.html │ │ ├── brk_manual.md │ │ ├── brk_mean_sd.html │ │ ├── brk_n.html │ │ ├── brk_pretty.html │ │ ├── brk_proportions.html │ │ ├── brk_quantiles.html │ │ ├── brk_spikes.html │ │ ├── brk_width-for-datetime.html │ │ ├── brk_width-for-datetime.md │ │ ├── brk_width.Duration.html │ │ ├── brk_width.default.html │ │ ├── brk_width.html │ │ ├── chop.html │ │ ├── chop.md │ │ ├── chop_deciles.html │ │ ├── chop_equally.html │ │ ├── chop_equally.md │ │ ├── chop_evenly.html │ │ ├── chop_evenly.md │ │ ├── chop_fn.html │ │ ├── chop_fn.md │ │ ├── chop_mean_sd.html │ │ ├── chop_mean_sd.md │ │ ├── chop_n.html │ │ ├── chop_n.md │ │ ├── chop_pretty.html │ │ ├── chop_pretty.md │ │ ├── chop_proportions.html │ │ ├── chop_proportions.md │ │ ├── chop_quantiles.html │ │ ├── chop_quantiles.md │ │ ├── chop_spikes.html │ │ ├── chop_spikes.md │ │ ├── chop_width.html │ │ ├── chop_width.md │ │ ├── dissect.html │ │ ├── dissect.md │ │ ├── exactly.html │ │ ├── exactly.md │ │ ├── fillet.html │ │ ├── fillet.md │ │ ├── format.breaks.html │ │ ├── index.html │ │ ├── index.md │ │ ├── is.breaks.html │ │ ├── kiru.html │ │ ├── knife.html │ │ ├── knife.md │ │ ├── lbl_dash.html │ │ ├── lbl_dash.md │ │ ├── lbl_datetime.html │ │ ├── lbl_datetime.md │ │ ├── lbl_discrete.html │ │ ├── lbl_discrete.md │ │ ├── lbl_endpoint.html │ │ ├── lbl_endpoints.html │ │ ├── lbl_endpoints.md │ │ ├── lbl_format.html │ │ ├── lbl_format.md │ │ ├── lbl_glue.html │ │ ├── lbl_glue.md │ │ ├── lbl_intervals.html │ │ ├── lbl_intervals.md │ │ ├── lbl_manual.html │ │ ├── lbl_manual.md │ │ ├── lbl_midpoints.html │ │ ├── lbl_midpoints.md │ │ ├── lbl_seq.html │ │ ├── lbl_seq.md │ │ ├── non-standard-types.html │ │ ├── non-standard-types.md │ │ ├── percent.html │ │ ├── percent.md │ │ ├── print.breaks.html │ │ ├── santoku-cast.html │ │ ├── santoku-cast.md │ │ ├── santoku-package.html │ │ ├── santoku-package.md │ │ ├── santoku.html │ │ ├── santoku_cast_common.Date.html │ │ ├── santoku_cast_common.POSIXct.html │ │ ├── santoku_cast_common.default.html │ │ ├── santoku_cast_common.double.html │ │ ├── santoku_cast_common.hexmode.html │ │ ├── santoku_cast_common.integer64.html │ │ ├── santoku_cast_common.octmode.html │ │ ├── santoku_cast_common.ts.html │ │ ├── santoku_cast_common.zoo.html │ │ ├── sequence-labels.html │ │ ├── tab.html │ │ ├── tab_deciles.html │ │ ├── tab_dissect.html │ │ ├── tab_equally.html │ │ ├── tab_evenly.html │ │ ├── tab_fn.html │ │ ├── tab_mean_sd.html │ │ ├── tab_n.html │ │ ├── tab_pretty.html │ │ ├── tab_proportions.html │ │ ├── tab_quantiles.html │ │ ├── tab_spikes.html │ │ └── tab_width.html │ ├── search.json │ ├── sitemap.xml │ └── tutorials/ │ ├── 00-visualintroduction.html │ ├── 00-visualintroduction.md │ ├── 01-chopping-dates.html │ ├── 01-chopping-dates.md │ ├── index.html │ └── index.md ├── man/ │ ├── breaks-class.Rd │ ├── brk_default.Rd │ ├── brk_manual.Rd │ ├── brk_width-for-datetime.Rd │ ├── chop.Rd │ ├── chop_equally.Rd │ ├── chop_evenly.Rd │ ├── chop_fn.Rd │ ├── chop_mean_sd.Rd │ ├── chop_n.Rd │ ├── chop_pretty.Rd │ ├── chop_proportions.Rd │ ├── chop_quantiles.Rd │ ├── chop_spikes.Rd │ ├── chop_width.Rd │ ├── dissect.Rd │ ├── exactly.Rd │ ├── fillet.Rd │ ├── lbl_dash.Rd │ ├── lbl_datetime.Rd │ ├── lbl_discrete.Rd │ ├── lbl_endpoints.Rd │ ├── lbl_glue.Rd │ ├── lbl_intervals.Rd │ ├── lbl_manual.Rd │ ├── lbl_midpoints.Rd │ ├── lbl_seq.Rd │ ├── non-standard-types.Rd │ ├── percent.Rd │ ├── santoku-cast.Rd │ └── santoku-package.Rd ├── pkgdown/ │ └── extra.css ├── release-process.R ├── santoku.Rproj ├── src/ │ ├── .gitignore │ ├── RcppExports.cpp │ └── categorize.cpp ├── tests/ │ ├── testthat/ │ │ ├── test-Date-DateTime.R │ │ ├── test-breaks.R │ │ ├── test-categorize.R │ │ ├── test-chop.R │ │ ├── test-labels.R │ │ ├── test-nonstandard.R │ │ ├── test-tab.R │ │ └── test-zzz-systematic.R │ └── testthat.R └── vignettes/ ├── .gitignore ├── santoku.Rmd ├── tutorials/ │ ├── chopping-dates-with-santoku.Rmd │ ├── libs/ │ │ ├── Proj4Leaflet/ │ │ │ ├── proj4-compressed.js │ │ │ └── proj4leaflet.js │ │ ├── crosstalk/ │ │ │ ├── css/ │ │ │ │ └── crosstalk.css │ │ │ └── js/ │ │ │ └── crosstalk.js │ │ ├── datatables-binding/ │ │ │ └── datatables.js │ │ ├── datatables-css/ │ │ │ └── datatables-crosstalk.css │ │ ├── dt-core/ │ │ │ └── css/ │ │ │ └── jquery.dataTables.extra.css │ │ ├── header-attrs/ │ │ │ └── header-attrs.js │ │ ├── htmlwidgets/ │ │ │ └── htmlwidgets.js │ │ ├── leaflet/ │ │ │ ├── leaflet.css │ │ │ └── leaflet.js │ │ ├── leaflet-binding/ │ │ │ └── leaflet.js │ │ ├── leafletfix/ │ │ │ └── leafletfix.css │ │ ├── remark-css/ │ │ │ ├── default-fonts.css │ │ │ └── default.css │ │ └── rstudio_leaflet/ │ │ └── rstudio_leaflet.css │ ├── rsconnect/ │ │ └── documents/ │ │ └── visual-introduction.Rmd/ │ │ └── rpubs.com/ │ │ └── rpubs/ │ │ ├── Document.dcf │ │ └── Publish Document.dcf │ ├── visual-intro-styles.css │ └── visual-introduction.Rmd ├── website-articles/ │ ├── performance.Rmd │ └── performance_cache/ │ └── html/ │ ├── __packages │ ├── unnamed-chunk-1_55ef34d700344288a08acda554dff8ac.RData │ ├── unnamed-chunk-1_55ef34d700344288a08acda554dff8ac.rdb │ └── unnamed-chunk-1_55ef34d700344288a08acda554dff8ac.rdx └── whats-new-in-0-9-0.Rmd