I'd like to insert a link to my dashboard in HTML. I tried this in a JupyterLab notebook:
HTML("<iframe src="http://127.0.0.1:8050/ " width="950" height="800" frame>")
I'd like to insert a link to my dashboard in HTML. I tried this in a JupyterLab notebook:
HTML("<iframe src="http://127.0.0.1:8050/ " width="950" height="800" frame>")
Copyright © 2021 Jogjafile Inc.
There's an issue with repeatedly using
"
characters, because with that you start and end several string literals in your code. Instead you want to pass a single string as argument toHTML()
. To achieve this, you can replace the outermost"
characters with an alternative way to mark the beginning and end of a string literal, e.g.'
or"""
. This allows you to keep the inner"
characters:or