get_multi_metric_chart: Get Multi-Metric Chart

Description Usage Arguments Examples

View source: R/general-methods.R

Description

Get Multi-Metric Chart

Usage

1
2
3
4
5
6
7
8
get_multi_metric_chart(
  experiment_keys,
  metrics = list(),
  params = list(),
  full = TRUE,
  independent = TRUE,
  api_key = NULL
)

Arguments

experiment_keys

List of experiment keys.

metrics

List of metric names to retrieve.

params

List of parameter names to retrieve.

full

Whether to fetch all values (up to 15,000) or a sampled subset (about 500 points).

independent

Whether 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_key

Comet API key (can also be specified using the COMET_API_KEY parameter as an environment variable or in a comet config file).

Examples

1
2
3
4
5
6
7
8
## Not run: 
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)

## End(Not run)

daattali/cometr documentation built on Aug. 15, 2020, 4:53 a.m.