Skip to content

get_multi_metric_chart

Get Multi-Metric Chart

Description

Get Multi-Metric Chart

Usage

get_multi_metric_chart(
  experiment_keys,
  metrics = list(),
  params = list(),
  full = TRUE,
  independent = TRUE,
  api_key = NULL
)

Arguments

ArgumentDescription
experiment_keysList of experiment keys.
metricsList of metric names to retrieve.
paramsList of parameter names to retrieve.
fullWhether to fetch all values (up to 15,000) or a sampled subset (about 500 points).
independentWhether the metrics should be fetched individually or as a correlated whole (only return values for steps for which you have values for every requested metric name).
api_keyComet API key (can also be specified using the COMET_API_KEY parameter as an environment variable or in a comet config file).

Examples

library(cometr)
# Assuming you have COMET_API_KEY variable defined
experiment <- "<your experiment key>"
metrics <- c("<metric1>", "<metric2>")
get_multi_metric_chart(experiment_keys = experiment, metrics = metrics)
Mar. 27, 2024