neptune_add {neptune}R Documentation

Adds the provided tag or tags to the run's tags.

Description

Adds the provided tag or tags to the run's tags.

Usage

neptune_add(x, values, wait=FALSE)

Arguments

x

Field for which we want to add tags eg. run['sys/tags']

values

string or list of strings - Tag or tags to be added.

wait

logical - If TRUE the client will wait to send all tracked metadata to the server before making the assignment. This makes the call synchronous.

Value

None

Author(s)

Authors:

See Also

Useful links:

Examples

## Not run: 
# We are using api token for an anonymous user neptuner. For your projects use your private token.
run <- neptune_init(api_token = 'ANONYMOUS',
                    project = "common-r/quickstarts")
neptune_add(run['sys/tags'], 'lgbm')

## End(Not run)

[Package neptune version 0.2.3 Index]