Plugins & Extending Dataiku
-
Hierarchical Models
For my current situation I am looking to set up hierarchical models to describe the data I have where it is a standard situation of having multiple observations per customer across multiple days where one can easily see that the behavior of each customer is more similar to their own than others and therefore wanting to…
-
R Library in Plugin
I'm creating a custom R recipe in a plugin and I want to include a library folder. Is there a way to do this like how we have a python-lib folder with all .py files and use from-import to have the method imported in the recipe.py file?
-
How to get input dataset dynamically in code recipe in R
r script dkuReadDataset(???????, samplingMethod="full") python script input_dataset = dataiku.Dataset(FLOW["in"][0]["smartName"]).get_dataframe() i doing this becoz i'm saving my code into "Code Sample". the same code will be execute again using different source of data.
-
Plugin: Julia | Dataiku
Hi, I had installed the plugin in DataIku to create and execute Julia recipes the same way you would use any other code recipes. It makes that a Julia kernel also becomes available for Jupyter notebooks. I am using the Dataiku dataset reading package, where it doesn't seem to recognize entered datasets. The code used is:…
-
dataset content in plugin UI
Hey, I have built a dataset that I would like to be displayed near parameters in plugin's UI. Do I have to use method of custom UI shown in documentation or is there a simple way to achieve that? Also can custom UI only be done with python or is it efficient with R too? P.S. would like to take a look into custom UI examples
-
Is there getChoicesFromPython for R recipe plugin?
Hey, I have a function in R recipe that creates bag of words dataframe. I would like to put all the substrings (bagofwords$text) into MULTISELECT choices. However, since I feel way more comfortable with R than Python I can't think of the solution.