UNPKG

@tidyjs/tidy

Version:

Tidy up your data with JavaScript, inspired by dplyr and the tidyverse

58 lines (57 loc) 2.69 kB
export { tidy } from './tidy.js'; export { filter } from './filter.js'; export { when } from './when.js'; export { map } from './map.js'; export { distinct } from './distinct.js'; export { arrange, asc, desc, fixedOrder, arrange as sort } from './arrange.js'; export { summarize, summarizeAll, summarizeAt, summarizeIf } from './summarize.js'; export { total, totalAll, totalAt, totalIf } from './total.js'; export { count } from './count.js'; export { tally } from './tally.js'; export { groupBy } from './groupBy.js'; export { rename } from './rename.js'; export { slice, sliceHead, sliceMax, sliceMin, sliceSample, sliceTail } from './slice.js'; export { innerJoin } from './innerJoin.js'; export { leftJoin } from './leftJoin.js'; export { fullJoin } from './fullJoin.js'; export { mutateWithSummary } from './mutateWithSummary.js'; export { mutate } from './mutate.js'; export { transmute } from './transmute.js'; export { select as pick, select } from './select.js'; export { addRows as addItems, addRows } from './addRows.js'; export { pivotWider } from './pivotWider.js'; export { pivotLonger } from './pivotLonger.js'; export { expand } from './expand.js'; export { fullSeq, fullSeqDate, fullSeqDateISOString, vectorSeq, vectorSeqDate } from './sequences/fullSeq.js'; export { replaceNully } from './replaceNully.js'; export { complete } from './complete.js'; export { fill } from './fill.js'; export { debug } from './debug.js'; export { rate } from './item/rate.js'; export { cumsum } from './vector/cumsum.js'; export { roll } from './vector/roll.js'; export { lag } from './vector/lag.js'; export { lead } from './vector/lead.js'; export { rowNumber } from './vector/rowNumber.js'; export { sum } from './summary/sum.js'; export { min } from './summary/min.js'; export { max } from './summary/max.js'; export { mean } from './summary/mean.js'; export { meanRate } from './summary/meanRate.js'; export { median } from './summary/median.js'; export { deviation } from './summary/deviation.js'; export { variance } from './summary/variance.js'; export { n } from './summary/n.js'; export { nDistinct } from './summary/nDistinct.js'; export { first } from './summary/first.js'; export { last } from './summary/last.js'; export { everything } from './selectors/everything.js'; export { startsWith } from './selectors/startsWith.js'; export { endsWith } from './selectors/endsWith.js'; export { contains } from './selectors/contains.js'; export { matches } from './selectors/matches.js'; export { numRange } from './selectors/numRange.js'; export { negate } from './selectors/negate.js'; import * as math from './math/math.js'; export { math as TMath }; //# sourceMappingURL=index.js.map