-
NEW Domo Data Science Resources Guide (help w/ Jupyter, scripting tiles, data science tiles, AutoML)
Hi all, I'm a data scientist at Domo on the Data Science Professional Services Team. We have a NEW Domo Data Science Resources Guide. The guide includes a list of all the help resources Domo has created related to data science products (Jupyter Workspaces, Magic ETL R/Python scripting tiles, Magic ETL data science tiles, &…
-
Installing R Packages in Jupyter in Domo
I don't seem to be able to install new packages in R in Jupyter in Domo anymore. In Domo the documentation, it shows an example of installing 'SentimentAnalysis' using install.packages(). When I try that, or any other package, I get this warning: Warning message:“unable to access index for repository…
-
Name Error when using domojupyter.ai
--------------------------------------------------------------------------- NameError Traceback (most recent call last) Cell In[30], line 167, in getRaws(alchemer_ids) 163 question_answer_dict = dict(zip(trans_df['Code\nQuestion'], trans_df['Original_Answer'])) 166 prompt_str = 'translate the following dictionary…
-
Using Email in Jupyter Workspace - Python Scripts
Hi All, I was trying to trigger and send emails from the Jupyter workspaces. I have the list of emails to whom I need to send and I also have the subject and body of the email ready, but I'm not able to connect to the DOMO Notifications Email which is being used by Card alerts and Workflows to send out emails. Is there any…
-
Installing R Packages in Jupyter rstatix
I am able to install some R packages in my Jupyter Workspace (tidyverse, ggplot2), but others I hit a wall, getting an error like: “installation of package ‘rstatix’ had non-zero exit status” Updating HTML index of packages in '.Library' The current one I'm struggling with is rstatix, which is a pretty popular library and…
-
Jupyter workspace pyspark usage
Is is possible to use pyspark in domo jupyter workspace just like google collab. If so , is there any tutorial related to this topic?
-
With the domojupyter.write_dataframe can you pass a specific schema?
Hi All, Am trying to write a DataFrame to a dataset using the domojupyter.write_dataframe function. The df in question has a field that is a Boolean, when I run the script and then check the output dataset in the domo Data section, the field has been created as an Integer and the entire column is blank. Question is, can…
-
Data format from Jupyter to Dataset
I'm facing the issue of transforming the dataframe to domo dataset. I have cleaned dataset, merge, join etc and make my dataframe beatifull, then the issue happen when I export by the domo.write_dataframe, the domo dataset change the the format of dataframe and it definitely not what I want. What a waste if we have to…
-
Properly Writing Back to Output?
Hey, first time Domo Jupyter user, and a new Python user. I'm having a difficult time exporting my data to a new dataset. From this: I keep encountering this error: /home/domo/.conda/lib/python3.9/site-packages/domojupyter/io.py:125: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future…
-
Jupyter Notebooks Python - Dates
Hi Domo Experts, I'm having issues writing back dates into a dataset from a pandas dataframe in Juptyer notebooks. I have a datetime column , which I've converted from a string using pandas.to_datetime. However, when I use domojuypiter.write_dataframe, they are converted back into string in the Domo dataset. My dataframe…
-
I am trying to use the ai features in jupyter workspaces, but I am having some trouble.
I found the GitHub page for domojupyter examples and I tried one them in my own jupyter workspace. The code I ran came directly from the example: import domojupyter.ai as ai prompt = "The text you wish to summarize goes here" response = ai.summarize(prompt) print(response.choices[0]) This code resulted in the following…