help me please
7 TopicsCreating Python Visuals
Hi, Hoping someone can help me. I'm trying to create a custom Python visual (ridge plot) using the following fields : (The Compliance (data type: Text) and Assignment Number (data type: Text) fields are from 2 different tables) # The following code to create a dataframe and remove duplicated rows is always executed and acts as a preamble for your script: dataset = pandas.DataFrame(Compliance, Assignment Number) dataset = dataset.drop_duplicates() import seaborn as sns import matplotlib.pyplot as plt import pandas as pd # Paste or type your script code here: ridge_plot = sns.FacetGrid(dataset, row="Compliance", hue="Compliance", aspect=5, height=1.25) # Use map function to make density plot in each element of the grid. ridge_plot.map(sns.kdeplot, "Assignment Number", clip_on=False, shade=True, alpha=0.7, lw=4, bw_method=.2) ridge_plot.map(plt.axhline, y=0, lw=4, clip_on=False) ridge_plot.savefig("Ridge_plot.png") When I try to create the visual, I get the below error: I have two questions: Can I create a dataset, for my Python custom visual, from 2 tables that have a one-many relationship ? Also do you know why I'm getting the above error ? Many thanks Also do you know why I'm getting the above error ?1.1KViews0likes1CommentUse of timeline across a number of different reports
Hi All, Power BI newbie here, desperately trying to get a report I created to work alongside a timeline. i think the issue is that one report has the date (which I've used for the timeline) and the other also does, but I can't use 2 timelines. I did add in a start date, end date and week number relationship which the sheet is linked to, but it doesn't like it. Any suggestions....before I hit the wine. thanks Rachel826Views1like0CommentsCustom Visual isn't showing in report. Using R
Dear All, I have created a custom visual using R script in Power bi (online). Actually I was looking to create interactive visualization using R language. I have followed all the steps one by one given in these two articles. 1. https://www.blue-granite.com/tutorials/power-bi-interactive-r-visual 2. https://docs.microsoft.com/en-us/power-bi/developer/visuals/custom-visual-develop-tutorial#troubleshooting Right now there is no error but the blank screen. Some time it shows an error e.g (Script timeout error) Kindly help how to get rid of this problem. Thanks Regards, Nabeel MukhtarWord Cloud stop words from data
hello i did a survey and im trying to use the word cloud visual to display the open question, i have two different excel tables one with answers and one with some words i dont want to show in the word cloud, and it works great but everytime i use a filter to differentiate answers from a different questions it shows all the words even the ones i dont want to show. hope i can get some help, i can you show the pics from what im doing but the questions and answers are in spanish thank you