Use percent chart, save unrounded stats
This commit is contained in:
parent
b4244ea75d
commit
d0973de2b4
|
@ -199,8 +199,7 @@ export const updateStatsCore = async () => {
|
||||||
const retainedCount = sumBy(Array.from(newTwoWeeksAgo), (userId) =>
|
const retainedCount = sumBy(Array.from(newTwoWeeksAgo), (userId) =>
|
||||||
activeLastWeek.has(userId) ? 1 : 0
|
activeLastWeek.has(userId) ? 1 : 0
|
||||||
)
|
)
|
||||||
const retainedFrac = retainedCount / newTwoWeeksAgo.size
|
return retainedCount / newTwoWeeksAgo.size
|
||||||
return Math.round(retainedFrac * 100 * 100) / 100
|
|
||||||
})
|
})
|
||||||
|
|
||||||
const weekOnWeekRetention = dailyUserIds.map((_userId, i) => {
|
const weekOnWeekRetention = dailyUserIds.map((_userId, i) => {
|
||||||
|
@ -222,8 +221,7 @@ export const updateStatsCore = async () => {
|
||||||
const retainedCount = sumBy(Array.from(activeTwoWeeksAgo), (userId) =>
|
const retainedCount = sumBy(Array.from(activeTwoWeeksAgo), (userId) =>
|
||||||
activeLastWeek.has(userId) ? 1 : 0
|
activeLastWeek.has(userId) ? 1 : 0
|
||||||
)
|
)
|
||||||
const retainedFrac = retainedCount / activeTwoWeeksAgo.size
|
return retainedCount / activeTwoWeeksAgo.size
|
||||||
return Math.round(retainedFrac * 100 * 100) / 100
|
|
||||||
})
|
})
|
||||||
|
|
||||||
const monthlyRetention = dailyUserIds.map((_userId, i) => {
|
const monthlyRetention = dailyUserIds.map((_userId, i) => {
|
||||||
|
@ -245,8 +243,7 @@ export const updateStatsCore = async () => {
|
||||||
const retainedCount = sumBy(Array.from(activeTwoMonthsAgo), (userId) =>
|
const retainedCount = sumBy(Array.from(activeTwoMonthsAgo), (userId) =>
|
||||||
activeLastMonth.has(userId) ? 1 : 0
|
activeLastMonth.has(userId) ? 1 : 0
|
||||||
)
|
)
|
||||||
const retainedFrac = retainedCount / activeTwoMonthsAgo.size
|
return retainedCount / activeTwoMonthsAgo.size
|
||||||
return Math.round(retainedFrac * 100 * 100) / 100
|
|
||||||
})
|
})
|
||||||
|
|
||||||
const firstBetDict: { [userId: string]: number } = {}
|
const firstBetDict: { [userId: string]: number } = {}
|
||||||
|
@ -272,8 +269,7 @@ export const updateStatsCore = async () => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
const frac = activatedCount / (newUsers || 1)
|
return activatedCount / (newUsers || 1)
|
||||||
return Math.round(frac * 100 * 100) / 100
|
|
||||||
})
|
})
|
||||||
const dailySignups = dailyNewUsers.map((users) => users.length)
|
const dailySignups = dailyNewUsers.map((users) => users.length)
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
import { Point, ResponsiveLine } from '@nivo/line'
|
import { Point, ResponsiveLine } from '@nivo/line'
|
||||||
import clsx from 'clsx'
|
import clsx from 'clsx'
|
||||||
|
import { formatPercent } from 'common/util/format'
|
||||||
import dayjs from 'dayjs'
|
import dayjs from 'dayjs'
|
||||||
import { zip } from 'lodash'
|
import { zip } from 'lodash'
|
||||||
import { useWindowSize } from 'web/hooks/use-window-size'
|
import { useWindowSize } from 'web/hooks/use-window-size'
|
||||||
|
@ -71,9 +72,9 @@ export function DailyPercentChart(props: {
|
||||||
dayjs(startDate).add(i, 'day').toDate()
|
dayjs(startDate).add(i, 'day').toDate()
|
||||||
)
|
)
|
||||||
|
|
||||||
const points = zip(dates, dailyPercent).map(([date, betCount]) => ({
|
const points = zip(dates, dailyPercent).map(([date, percent]) => ({
|
||||||
x: date,
|
x: date,
|
||||||
y: betCount,
|
y: percent,
|
||||||
}))
|
}))
|
||||||
const data = [{ id: 'Percent', data: points, color: '#11b981' }]
|
const data = [{ id: 'Percent', data: points, color: '#11b981' }]
|
||||||
|
|
||||||
|
@ -93,7 +94,7 @@ export function DailyPercentChart(props: {
|
||||||
type: 'time',
|
type: 'time',
|
||||||
}}
|
}}
|
||||||
axisLeft={{
|
axisLeft={{
|
||||||
format: (value) => `${value}%`,
|
format: formatPercent,
|
||||||
}}
|
}}
|
||||||
axisBottom={{
|
axisBottom={{
|
||||||
tickValues: bottomAxisTicks,
|
tickValues: bottomAxisTicks,
|
||||||
|
@ -109,15 +110,15 @@ export function DailyPercentChart(props: {
|
||||||
margin={{ top: 20, right: 28, bottom: 22, left: 40 }}
|
margin={{ top: 20, right: 28, bottom: 22, left: 40 }}
|
||||||
sliceTooltip={({ slice }) => {
|
sliceTooltip={({ slice }) => {
|
||||||
const point = slice.points[0]
|
const point = slice.points[0]
|
||||||
return <Tooltip point={point} />
|
return <Tooltip point={point} isPercent />
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
function Tooltip(props: { point: Point }) {
|
function Tooltip(props: { point: Point; isPercent?: boolean }) {
|
||||||
const { point } = props
|
const { point, isPercent } = props
|
||||||
return (
|
return (
|
||||||
<Col className="border border-gray-300 bg-white py-2 px-3">
|
<Col className="border border-gray-300 bg-white py-2 px-3">
|
||||||
<div
|
<div
|
||||||
|
@ -126,7 +127,8 @@ function Tooltip(props: { point: Point }) {
|
||||||
color: point.serieColor,
|
color: point.serieColor,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<strong>{point.serieId}</strong> {point.data.yFormatted}
|
<strong>{point.serieId}</strong>{' '}
|
||||||
|
{isPercent ? formatPercent(+point.data.y) : point.data.yFormatted}
|
||||||
</div>
|
</div>
|
||||||
<div>{dayjs(point.data.x).format('MMM DD')}</div>
|
<div>{dayjs(point.data.x).format('MMM DD')}</div>
|
||||||
</Col>
|
</Col>
|
||||||
|
|
|
@ -145,14 +145,18 @@ export function CustomAnalytics(props: Stats) {
|
||||||
{
|
{
|
||||||
title: 'D1',
|
title: 'D1',
|
||||||
content: (
|
content: (
|
||||||
<DailyCountChart dailyCounts={d1} startDate={startDate} small />
|
<DailyPercentChart
|
||||||
|
dailyPercent={d1}
|
||||||
|
startDate={startDate}
|
||||||
|
small
|
||||||
|
/>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'D1 weekly average',
|
title: 'D1 weekly average',
|
||||||
content: (
|
content: (
|
||||||
<DailyCountChart
|
<DailyPercentChart
|
||||||
dailyCounts={d1Weekly}
|
dailyPercent={d1Weekly}
|
||||||
startDate={startDate}
|
startDate={startDate}
|
||||||
small
|
small
|
||||||
/>
|
/>
|
||||||
|
@ -175,8 +179,8 @@ export function CustomAnalytics(props: Stats) {
|
||||||
{
|
{
|
||||||
title: 'W1',
|
title: 'W1',
|
||||||
content: (
|
content: (
|
||||||
<DailyCountChart
|
<DailyPercentChart
|
||||||
dailyCounts={w1NewUsers}
|
dailyPercent={w1NewUsers}
|
||||||
startDate={startDate}
|
startDate={startDate}
|
||||||
small
|
small
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user