I'd like to customize the rich tool tip pop up in Apache Superset. Currently the chart I have is this.
Is there anyway to adjust the SUM(total_industry_conversions_standard) to something like 'Industry Conversions'? The data is being pulled as a group by aggregation.
When you define the metric, you can asign a name to the metric.
enter image description here
Related
Is there a way to output a chart or other data visualizations in Actions on Google?
example:
User: "What is the percentage of sales this december?"
Actions: outputs a chart generated using d3js or other data viz tools
The only workaround that I can think of is by saving the chart as images then use that image to show in basic card. but the image is too small, it's not visually pleasing to use in other devices i.e. Google Home Hub.
The way to do that is generate an image and send it as a basic card. There's not another way to visually show information.
Is it possible to create a drill down graph with apache superset?
Say for example - population of all countries and onclick of a country, population of all states within that country should be drawn and onclick of state, population of state should be drawn.
Can someone help me with steps/tips to create this using apache superset as I did not find any example/option to create the same.
There is a walkthrough on this from ApacheCon Asia 2022 on youtube - https://www.youtube.com/watch?v=7YnpKLZ1PRM
More than I can summarize here for you
Please see the response of mistercrunch (one of the creators of Apache Superset) below or here: https://github.com/apache/incubator-superset/issues/2890.
Drill down assumes the framework is aware of hierarchies which Superset isn't at the moment. We encourage our users to slice and dice by entering the explore mode, applying filters and altering the "Group By" field which is pretty easy and very flexible. It's an open field instead of a guided flow.
Preset, which uses Apache Superset, has implemented a feature for Drilling to Chart details. You can find more information about it here:
https://docs.preset.io/docs/drilling-to-chart-details
There is also a pull request for a drill down prototype but I don't think it was integrated to Superset, according to the comments.
https://github.com/apache/superset/pull/14688
Including this article link here in case anyone finds it helpful: https://www.tetranyde.com/blog/embedding-superset
It is possible by using custom JavaScript and charts.
It is clear from the documentation that I can add custom metrics for a custom event.
How do I view these metrics in the Pinpoint console? From the Pinpoint console, it is obvious how to view attributes. I can go to Analytics > Events, select my custom event, and narrow down the events to whatever attributes I desire. I am asking about how to view metrics. To be clear, these differ by being continuous values whereas attributes are discrete. The documentation says that I can do this. See below how I can filter by attributes manually: (attribute is circled)
See the docs on custom events here: https://docs.aws.amazon.com/pinpoint/latest/developerguide/integrate-events.html
Similarly, creating a funnel only allows filtering for attributes. How can I filter for metrics?
Thank you for your time!
When I first asked this question, AWS had the ability to record metrics with the Swift SDK, but not view them in the Pinpoint API, which is absurd, because then you can only record metrics. What's the point? I asked in the AWS forums, and a couple months later, they responded something along the lines of "Please wait - coming soon."
This feature is now available, whereas before it simply wasn't.
Go to Pinpoint, your project, then click the Analytics drop-down menu, then click events. You can see that you can sort by metric. If you look at my outdated screenshot above, you'll see that this was not an option.
How do I add an image to a Power BI Report? I know how to add an image to a dashboard
This refers to Power BI within a browser, not Power BI desktop
I cannot use Power BI desktop as that does not support Stream Analytics data
Cheers
Paul
If you are stuck editing in a browser, then there is no way to add an image.
There are visuals (e.g. table) that can show an image based on a URL, but the URL must already exist in the dataset. You cant edit or create columns or measures using a browser.
I do not believe there is any native way to do this, however,There is a workaround which is:-
1.Add any chart type
2.Apply any empty dataset to it
3.Under format scroll down the Plot Area
4.Add Image
Add images, videos, and more to your dashboard
By adding a tile to your dashboard, you can place an image, text box, video, streaming data, or web code on the dashboard.
Watch Amanda add tiles to a dashboard.
You can add an image, text box, video, streaming data, or web code directly to your dashboard.
Select the arrow next to Edit on the top menu, and then select Add a tile.
Select which type of tile to add:
Web content
Image
Text box
Video
Custom streaming data
Add an image
If you want to add your company logo or some other image to your dashboard, you save the image file online and link to it. Make sure security credentials aren't required to access the image file. For example, because OneDrive and SharePoint require authentication, images stored there can't be added to a dashboard this way. Also, images can't be in .svg format.
From the Add tile window, select Image > Next.
From the Add image tile window, add the image information:
a. To display a title above the image, select Display title and subtitle and enter a Title and an optional Subtitle.
b. Enter the image URL.
c. To make the tile a hyperlink, select the Set custom link and enter the URL.
When colleagues click the image or title, they'll be taken to this URL.
d. Select Apply.
On the dashboard, resize and move the image as needed.
Easy workaround:
(in Edit mode, of course)
insert a blank button (Buttons->Blank),
in the Format Pane under the "Style" section, for the "icon type" set custom
click on "browse" to choose your image file
Is is possible to attach event handler to a bar in a barchart?
I have a barchart that displays average income (each bar represents a province)...
What I need is: when I click a bar that represents "Illinois" for example, my dashboard will be update with data pertaining only to "Illinois".
That's something that Microsoft Power BI can do. Wondering if that's possible in Superset.
It is definitely not supported for now. Unfortunately you can not customize any behaviour on bar events except checkboxes in controls area. But if you are familiar with javascript you can customize this behaviour in js scripts /superset/assets/visualizations/ after cloning repo and installation from source code.