View Source Plausible.Stats.Util (Plausible v0.0.1)

Utilities for modifying stat results

Summary

Functions

Sometimes we need to manually add metrics in order to calculate the value for other metrics. E.g

This function adds the visitors metric into the list of given metrics if it's not already there and if it is needed for any of the other metrics to be calculated.

Functions

Link to this function

keep_requested_metrics(results, requested_metrics)

View Source

Sometimes we need to manually add metrics in order to calculate the value for other metrics. E.g:

  • __internal_visits is fetched when querying bounce rate, visit duration, or views_per_visit, as it is needed to calculate these from imported data.

  • visitors metric might be added manually via maybe_add_visitors_metric/1, in order to be able to calculate conversion rate.

This function can be used for stripping those metrics from a breakdown (list), or an aggregate (map) result. We do not want to return metrics that we're not requested.

Link to this function

maybe_add_visitors_metric(metrics)

View Source

This function adds the visitors metric into the list of given metrics if it's not already there and if it is needed for any of the other metrics to be calculated.

Link to this function

shortname(query, metric)

View Source