neptune_pop | R Documentation |
Removes the field or whole namespace stored under the path completely and all data associated with them.
neptune_pop(run, path, wait=TRUE)
run |
Neptune run object. |
path |
character - Path of the field or namespace to be removed. |
wait |
logical - If TRUE the client will first wait to send all tracked metadata to the server. This makes the call synchronous, see Connection modes guide. |
None
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_pop(run, 'lr')
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.