@@ -484,6 +484,66 @@ export type { DatetimeUnit, DatetimeErrors, ToDatetimeOptions } from "./stats/in
484484export { toTimedelta , parseFrac , formatTimedelta } from "./stats/index.ts" ;
485485export type { TimedeltaUnit , TimedeltaErrors , ToTimedeltaOptions } from "./stats/index.ts" ;
486486export { dateRange , parseFreq , advanceDate , toDateInput } from "./stats/index.ts" ;
487- export type { DateRangeFreq , DateRangeInclusive , DateRangeOptions , ParsedFreq } from "./stats/index.ts" ;
487+ export type { DateRangeInclusive , ParsedFreq } from "./stats/index.ts" ;
488488export { astypeSeries , astype , castScalar } from "./core/index.ts" ;
489489export type { AstypeOptions , DataFrameAstypeOptions } from "./core/index.ts" ;
490+ export { clipAdvancedSeries , clipAdvancedDataFrame } from "./stats/index.ts" ;
491+ export type {
492+ SeriesBound ,
493+ DataFrameBound ,
494+ ClipAdvancedSeriesOptions ,
495+ ClipAdvancedDataFrameOptions ,
496+ } from "./stats/index.ts" ;
497+ export { diffDataFrame , shiftDataFrame } from "./stats/index.ts" ;
498+ export type {
499+ DiffOptions ,
500+ DataFrameDiffOptions ,
501+ ShiftOptions ,
502+ DataFrameShiftOptions ,
503+ } from "./stats/index.ts" ;
504+ export { modeSeries , modeDataFrame } from "./stats/index.ts" ;
505+ export type { ModeSeriesOptions , ModeDataFrameOptions } from "./stats/index.ts" ;
506+ export { ffillSeries , bfillSeries , dataFrameFfill , dataFrameBfill } from "./stats/index.ts" ;
507+ export type { FillDirectionOptions , DataFrameFillOptions } from "./stats/index.ts" ;
508+ export { pctChangeSeries , pctChangeDataFrame } from "./stats/index.ts" ;
509+ export type {
510+ PctChangeFillMethod ,
511+ PctChangeOptions ,
512+ DataFramePctChangeOptions ,
513+ } from "./stats/index.ts" ;
514+ export { replaceSeries , replaceDataFrame } from "./stats/index.ts" ;
515+ export type {
516+ ReplaceMapping ,
517+ ReplaceSpec ,
518+ ReplaceOptions ,
519+ DataFrameReplaceOptions ,
520+ } from "./stats/index.ts" ;
521+ export { skewSeries , kurtSeries , skewDataFrame , kurtDataFrame } from "./stats/index.ts" ;
522+ export type { SkewKurtSeriesOptions , SkewKurtDataFrameOptions } from "./stats/index.ts" ;
523+ export { varSeries , semSeries , varDataFrame , semDataFrame } from "./stats/index.ts" ;
524+ export type { VarSemSeriesOptions , VarSemDataFrameOptions } from "./stats/index.ts" ;
525+ export { idxminSeries , idxmaxSeries , idxminDataFrame , idxmaxDataFrame } from "./stats/index.ts" ;
526+ export type { IdxOptions , IdxDataFrameOptions } from "./stats/index.ts" ;
527+ export {
528+ nuniqueSeries ,
529+ nuniqueDataFrame ,
530+ anySeries ,
531+ allSeries ,
532+ anyDataFrame ,
533+ allDataFrame ,
534+ nunique ,
535+ } from "./stats/index.ts" ;
536+ export type {
537+ NuniqueSeriesOptions ,
538+ NuniqueDataFrameOptions ,
539+ AnyAllSeriesOptions ,
540+ AnyAllDataFrameOptions ,
541+ } from "./stats/index.ts" ;
542+ export { quantileSeries , quantileDataFrame } from "./stats/index.ts" ;
543+ export type {
544+ QuantileInterpolation ,
545+ QuantileSeriesOptions ,
546+ QuantileDataFrameOptions ,
547+ } from "./stats/index.ts" ;
548+ export { intervalRange } from "./stats/index.ts" ;
549+ export type { ClosedType } from "./stats/index.ts" ;
0 commit comments