Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
8.69 kB
import range from 'lodash/range.js'
import random from 'lodash/random.js'
import shuffle from 'lodash/shuffle.js'
import { timeDays } from 'd3-time'
import { timeFormat } from 'd3-time-format'
import * as color from './color'
import * as sets from './sets'
export { sets }
export const randColor = color.randColor
export const generateProgrammingLanguageStats = (shouldShuffle = true, limit = -1) => {
let langs = sets.programmingLanguages
if (shouldShuffle) {
langs = shuffle(langs)
}
if (limit < 1) {
limit = 1 + Math.round(Math.random() * (sets.programmingLanguages.length - 1))
}
return langs.slice(0, limit).map(language => ({
label: language,
value: Math.round(Math.random() * 600),
color: randColor(),
}))
}
export const uniqRand = <T>(generator: (...args: unknown[]) => T) => {
const used: T[] = []
return (...args: unknown[]) => {
let value
do {
value = generator(...args)
} while (used.includes(value))
used.push(value)
return value
}
}
export const randCountryCode = () => shuffle(sets.countryCodes)[0]
type DrinkDatum = {
id: string
color: string
data: Array<{
color: string
x: string
y: number
}>
}
export const generateDrinkStats = (xSize = 16) => {
const rand = () => random(0, 60)
const types = ['whisky', 'rhum', 'gin', 'vodka', 'cognac']
const country = uniqRand(randCountryCode)
const data: DrinkDatum[] = types.map(id => ({
id,
color: randColor(),
data: [],
}))
range(xSize).forEach(() => {
const x = country()
types.forEach(id => {
data
.find(d => d.id === id)
?.data.push({
color: randColor(),
x,
y: rand(),
})
})
})
return data
}
export const generateSerie = (xSize = 20) => {
const max = 100 + Math.random() * (Math.random() * 600)
return range(xSize).map(() => Math.round(Math.random() * max))
}
export const generateSeries = (
ids: string[],
xKeys: string[] | number[],
{ withColors = true } = {}
) =>
ids.map(id => {
const series: {
id: string
color?: string
data: {
x: string | number
y: number
}[]
} = {
id,
data: xKeys.map(x => ({ x, y: Math.round(Math.random() * 300) })),
}
if (withColors) {
series.color = randColor()
}
return series
})
export const generateStackData = (size = 3) => {
const length = 16
return range(size).map(() => generateSerie(length).map((v, i) => ({ x: i, y: v })))
}
export const generateCountriesPopulation = (size: number) => {
const countryCode = uniqRand(randCountryCode)
return range(size).map(() => ({
country: countryCode(),
population: 200 + Math.round(Math.random() * Math.random() * 1000000),
}))
}
export const generateOrderedDayCounts = (from: Date, to: Date) => {
const days = timeDays(from, to)
const dayFormat = timeFormat('%Y-%m-%d')
return days.map(day => {
return {
value: Math.round(Math.random() * 400),
day: dayFormat(day),
}
})
}
export const generateDayCounts = (from: Date, to: Date, maxSize = 0.9) => {
const days = generateOrderedDayCounts(from, to)
const size =
Math.round(days.length * (maxSize * 0.4)) +
Math.round(Math.random() * (days.length * (maxSize * 0.6)))
return shuffle(days).slice(0, size)
}
export const generateCountriesData = (
keys: string[],
{ size = 12, min = 0, max = 200, withColors = true } = {}
) =>
sets.countryCodes.slice(0, size).map(country => {
const d: Record<string, unknown> = {
country,
}
keys.forEach(key => {
d[key] = random(min, max)
if (withColors === true) {
d[`${key}Color`] = randColor()
}
})
return d
})
export const generateMonthlyData = (
keys: string[],
{ size = 12, min = 0, max = 200, withColors = true, short = false } = {}
) => {
const set = short ? sets.monthsShort : sets.months
return set.slice(0, size).map(month => {
const d: Record<string, unknown> = {
month,
}
keys.forEach(key => {
d[key] = random(min, max)
if (withColors) {
d[`${key}Color`] = randColor()
}
})
return d
})
}
const libTreeItems = [
[
'viz',
[
['stack', [['cchart'], ['xAxis'], ['yAxis'], ['layers']]],
[
'ppie',
[
['chart', [['pie', [['outline'], ['slices'], ['bbox']]], ['donut'], ['gauge']]],
['legends'],
],
],
],
],
['colors', [['rgb'], ['hsl']]],
[
'utils',
[['randomize'], ['resetClock'], ['noop'], ['tick'], ['forceGC'], ['stackTrace'], ['dbg']],
],
['generators', [['address'], ['city'], ['animal'], ['movie'], ['user']]],
[
'set',
[
['clone'],
['intersect'],
['merge'],
['reverse'],
['toArray'],
['toObject'],
['fromCSV'],
['slice'],
['append'],
['prepend'],
['shuffle'],
['pick'],
['plouc'],
],
],
[
'text',
[
['trim'],
['slugify'],
['snakeCase'],
['camelCase'],
['repeat'],
['padLeft'],
['padRight'],
['sanitize'],
['ploucify'],
],
],
[
'misc',
[
['greetings', [['hey'], ['HOWDY'], ['aloha'], ['AHOY']]],
['other'],
[
'path',
[
['pathA'],
['pathB', [['pathB1'], ['pathB2'], ['pathB3'], ['pathB4']]],
[
'pathC',
[
['pathC1'],
['pathC2'],
['pathC3'],
['pathC4'],
['pathC5'],
['pathC6'],
['pathC7'],
['pathC8'],
['pathC9'],
],
],
],
],
],
],
]
type LibTreeDatum<ID extends string = 'name', V extends string = 'loc'> = Record<ID, string> &
Record<V, number> & {
color?: string
children?: LibTreeDatum<ID, V>[]
}
export const generateLibTree = <ID extends string = 'name', V extends string = 'loc'>(
name = 'nivo',
limit?: number | null,
children = libTreeItems,
options: {
withColors?: boolean
idKey?: ID
valueKey?: V
} = {}
): LibTreeDatum<ID, V> => {
const { withColors = true, idKey = 'name' as ID, valueKey = 'loc' as V } = options
limit = limit || children.length
if (limit > children.length) {
limit = children.length
}
const tree = { [idKey]: name } as LibTreeDatum<ID, V>
if (withColors) {
tree.color = randColor()
}
if (children?.length > 0) {
tree.children = range(limit).map((_, i) => {
const leaf = children[i]
// full path `${name}.${leaf[0]}`
return generateLibTree<ID, V>(leaf[0] as string, null, (leaf[1] ?? []) as any, options)
})
} else {
tree[valueKey as V] = Math.round(Math.random() * 200000) as any
}
return tree
}
const wines = ['chardonay', 'carmenere', 'syrah']
const wineTastes = ['fruity', 'bitter', 'heavy', 'strong', 'sunny']
export const generateWinesTastes = ({ randMin = 20, randMax = 120 } = {}) => {
const data = wineTastes.map(taste => {
const d: Record<string, unknown> = { taste }
wines.forEach(wine => {
d[wine] = random(randMin, randMax)
})
return d
})
return { data, keys: wines }
}
export * from './helpers'
export * from './range'
export * from './boxplot'
export * from './bullet'
export * from './chord'
export * from './network'
export * from './parallelCoordinates'
export * from './sankey'
export * from './swarmplot'
export * from './waffle'
export * from './xySeries'