Plugins & Extending Dataiku
- Can I turn an R shiny web app into a plugin, and use it inside the LAB as a model view? or is it only possible with a standard HTML web app? Operating system used: WindowsSolution by Sarina
Hi @MNOP
,
You can create a plugin with an R Shiny webapp to be displayed in the Visual ML analysis view.
From your Shiny weabpp, you will select "Convert to plugin webapp" from your R shiny webapp:In the newly created plugin webapp.json file, you will need to ensure that the roles are defined for ANALYSIS, like so:
"roles": [ { "type": "SAVED_MODEL", "contentType": "prediction", "backendTypes": ["PY_MEMORY"], "predictionTypes": ["BINARY_CLASSIFICATION"], "targetParamsKey": "modelId", "pathParamsKey": "versionId" }, { "type": "ANALYSIS", "contentType": "prediction", "backendTypes": ["PY_MEMORY"], "predictionTypes": ["BINARY_CLASSIFICATION"], "targetParamsKey": "trainedModelFullModelId" } ]
You will also need to create an R code environment for your plugin. You can do so by creating a new "R" code environment from the "Summary" tab of your plugin:
Then, you'll want to makes sure that any required R packages are listed in your plugin's rPackages.txt file, and you'll need to then build your code environment back on the "Summary" tab of the plugin, after you've fully set up the code environment specs like so:
Here is an example of the basic shiny webapp example converted to a plugin that is available in the Visual ML Analysis screen:
I'm attaching an example of this plugin in case it's helpful as a reference point.
Thanks!
SarinaSolution by SarinaHi @MNOP
,
You can create a plugin with an R Shiny webapp to be displayed in the Visual ML analysis view.
From your Shiny weabpp, you will select "Convert to plugin webapp" from your R shiny webapp:In the newly created plugin webapp.json file, you will need to ensure that the roles are defined for ANALYSIS, like so:
"roles": [ { "type": "SAVED_MODEL", "contentType": "prediction", "backendTypes": ["PY_MEMORY"], "predictionTypes": ["BINARY_CLASSIFICATION"], "targetParamsKey": "modelId", "pathParamsKey": "versionId" }, { "type": "ANALYSIS", "contentType": "prediction", "backendTypes": ["PY_MEMORY"], "predictionTypes": ["BINARY_CLASSIFICATION"], "targetParamsKey": "trainedModelFullModelId" } ]
You will also need to create an R code environment for your plugin. You can do so by creating a new "R" code environment from the "Summary" tab of your plugin:
Then, you'll want to makes sure that any required R packages are listed in your plugin's rPackages.txt file, and you'll need to then build your code environment back on the "Summary" tab of the plugin, after you've fully set up the code environment specs like so:
Here is an example of the basic shiny webapp example converted to a plugin that is available in the Visual ML Analysis screen:
I'm attaching an example of this plugin in case it's helpful as a reference point.
Thanks!
Sarina - I'd like to manually create WARNING outcome for a job or step to handle edge cases in our custom plugin. Is there a way to achieve this?Last answer byLast answer by Turribeach
We have a similar request so I have raised this Product Idea:
You may want to vote for it.
- Hi, I am trying to upload multiple excel files with multiple sheets at the same time into one dataset. Is it possible to add a special column indicating the original dataset (excel file + sheet)? Many…Last answer byLast answer by Ashley
Hi,
Updating this thread to let you know that Dataiku know lets you use the sheet name of an Excel as a column in the dataset. When you configure the format of an uploaded Excel, there is a checkbox 'Add the sheet name as an output column' which will do just that. The steps are outlined in this tutorial.
I hope it helps!
Cheers,
Ashley
- I want to prepare a custom plugin like this model fairness report inside the LAB. I want to display custom metrics and predictions as a view in in the LAB,while building the model in LAB I want to loo…Last answer byLast answer by Alexandru
Hi @MNOP
,
Note that this plugin is highly complex and customized and would best be handled with professional services.
We have some guides here for plugin creation in general but not for such custom webapp plugin that are available in models:
https://developer.dataiku.com/latest/tutorials/plugins/creation-configuration/index.htmlYou can of course try and install the plugin, convert to dev on an instance where the plugin is not being used, and start with that base for your custom plugin.
- Last answer byLast answer by Turribeach
It depends on what version of Dataiku you are using. "using the website" is not descriptive enough since Dataiku runs on a browser on all versions so it's always "a website".
If you are using Dataiku hosted in the Cloud then you need to use the Launch Pad: https://launchpad-dku.app.dataiku.io/ and create a new Code Environment. Otherwise if you are hosting it yourself you go Administration => Code Envs and create a new Code Environment.
- I have developed a custom plugin similar to the model fairness report (model view of some custom metrics). I can see my plugin under development in the plugin menu. How do I access the plugin inside L…Solution bySolution by Sarina
Hi @MNOP
,
Please see my response on your post here for an example:
https://community.dataiku.com/t5/Plugins-Extending-Dataiku/Web-app-as-a-plugin-usign-R-Shiny/td-p/40982
Thank you,
Sarina - Hi Team we are having a managed folder in Dataiku which we have created with the help of BOX plugin. Below is the configuration of the managed folder. Now, we want to get the list of high-level direct…Last answer byLast answer by Alexandru
Hi,
The dkuManagedFolderPartitionPaths is the only function to list paths in a managed folder in R, https://doc.dataiku.com/dss/api/latest/R/dataiku/reference/ This can take a long time if there are a lot of files/directories.
What I can suggest is to use the browse option in UI to list top-level directories and then create separate folder connections for these top-level directories. - I'm trying to use Snowpark within Python recipe. from dataiku.snowpark import DkuSnowpark This works in DSS, but when I tried to run this code in local VS Code, it returns error "ModuleNotFoundError: …Last answer by
- I want to create a preset that I can use to authenticate a Plugin API in dataiku. How do are go about this? Many users will be authenticating the Plugin API and I will like to create a unique preset f…Last answer byLast answer by Turribeach
Here is how you create presets:
I am not sure if plugins run under the identify of the user, but you should be able to quickly test:
import dataiku client = dataiku.api_client() username = client.get_auth_info()['authIdentifier']
Let us know how it goes.
- I am using Dataiku to build predictive models. After building the model, I use that model to score a future dataset. I want to create an HTML dashboard plugin that inputs this scored dataset and displ…Last answer byLast answer by BernardB
Hello,
You can use a standard webapp, which is made at least of HTML, CSS and Javascript code that you can write in the webapp editor.
However, considering what you want to display, I would also consider the built-in Dashboards, which allow you to publish datasets, as well as the metrics you mention, and more (all insights from model report: explainability, performance etc.).
It is much simpler and quicker than building a whole webapp, and it's possible to download the dashboard as PDF, or even schedule it to be sent automatically.
Hope that helps,
Berns