Live plotting for data logging.
Two backends available:
backends - Bokeh backend protocols and base classes.logger
_active_servers
__all__
Value: getLogger(...)
Value: None
Enable live plotting for a data logger.
Parameters:
DataLogger instance
“server” (browser) or “inline” (notebook)
Server port (server backend only)
Duration in seconds that a session token is valid
Returns:
Backend instance Example (server):
backend = enable_live_plotting(logger, backend=“server”, port=5006)
Open http://localhost:5006 in browser
Example (inline):
backend = enable_live_plotting(logger, backend=“inline”)
Plots appear in notebook cells
Value: ['enable_live_plotting']