Using Dataiku
- Hello everyone, I am trying to create a webapp in Dataiku using Dash and the Dash Bootstrap Components package. I have successfully imported all the necessary packages into the environment and there a…Solution by FlorentD
Hi @Pierre_VDB
If you do not have internet access, you can't access Bootstrap, which is hosted on the web. So this
app.config.external_stylesheets = [dbc.themes.BOOTSTRAP]
won't work.
You should download the library you need and store them anywhere.
And then register them. For example, if the CSS file is stored in the local shared code:
app.config.external_stylesheets = ["/local/static/file.css"]
will allow you to use the CSS. `app.config.external_scripts` also exists and should allow you to use some javascript files.
Hope this helps.
Best
Solution by FlorentDHi @Pierre_VDB
If you do not have internet access, you can't access Bootstrap, which is hosted on the web. So this
app.config.external_stylesheets = [dbc.themes.BOOTSTRAP]
won't work.
You should download the library you need and store them anywhere.
And then register them. For example, if the CSS file is stored in the local shared code:
app.config.external_stylesheets = ["/local/static/file.css"]
will allow you to use the CSS. `app.config.external_scripts` also exists and should allow you to use some javascript files.
Hope this helps.
Best
- Hello, I'm creating an application. I have created some tiles (edit project variables). I clicked on "Use custom UI," then I added some Python code (I have created a dataframe) in the Python helper co…Solution by Sarina
Hi @GP30
,
Indeed, you would likely need to save the histograms as images, and reference the existing image files in order to display them in your application UI. You can of course try other methods, but this seems like the most straightforward.
Thank you,
SarinaSolution by SarinaHi @GP30
,
Indeed, you would likely need to save the histograms as images, and reference the existing image files in order to display them in your application UI. You can of course try other methods, but this seems like the most straightforward.
Thank you,
Sarina - Hi guys, I wonder if is is possible to generate the code behind the visualizations. I mean, I have generated some insights (bar plot, line plot and Pie plot) on Dataiku "design node", but I would like…
- Hello, i have a script in my R mcdown and i want to create a scénario witch build that R mcdown every minute. Could you help me please? if there no way to do it with a scenario, if a script can do it,…
- I have a flow , where there are series of recipes, but now I want to change the main source data set , how can I do itLast answer byLast answer by
- I have a snowflake table and I've set up the connection and everything looks good, Dataiku requires me to create a dataset using that snowflake table that I can use as my input / output. The issue is …Last answer byLast answer by
- I have a column that has been parsed and is in UTC, when I try to format the date to be in eastern / New York time I get a new column that is -5 hours, but isn't the current the current difference -4 …Last answer byLast answer by