View source: R/neptune_exists.R
neptune_exists | R Documentation |
Checks if there is any field or namespace under the specified path. Note that this method checks the local representation of the run. The field may have been created by another process (use neptune_sync(run) to synchronize local representation) or the metadata may have not reached the Neptune servers so it may be impossible to fetch (use neptune_wait(run) to wait for all tracking calls to finish).
neptune_exists(run, path)
run |
Neptune run object. |
path |
character - The path to check for the existence of a field or a namespace |
logical - TRUE if field exists at path
Authors:
Mateusz Dominiak
Maintainer: Neptune DevTeam Devbackend@neptune.ai
Useful links:
Documentation https://docs.neptune.ai/
Report bugs at https://github.com/neptune-ai/neptune-r/issues
## 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_API_TOKEN,
project = "common-r/quickstarts")
run['lr'] <- 0.001
neptune_exists(run, 'lr')
neptune_exists(run, 'notlr')
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.