To enable the save option, you need to configure the ability to save in the widget's configuration. After configuring, the save option should appear in the upper right corner. For exporting, you can either open the analysis in Quiver or copy it to Notepad.
Timestamp: March 1, 2024
ObjectSet:MaxNumAggregationsExceeded
error when creating plots in Quiver, and how can it be resolved?The error is caused due to the number of aggregations being performed at once by the Ontology backend. The solution is to aggregate the data before passing it into the charts, or to create several charts and then merge them in an Overlay Chart.
Timestamp: March 15, 2024
Yes, it is expected because the function references the backing materialization of the object set, which is tied to its underlying dataset.
Timestamp: March 1, 2024
It does not.
Timestamp: March 15, 2024
Make sure you have published the Quiver dashboard from the dashboard view, not the analysis. You can find the dashboards you created for the analysis by looking for a screen icon on the left side panel. If this is done, we recommend searching for different parts of your dashboard name in the Workshop widget.
Timestamp: March 1, 2024
Republish the dashboard while tab 1 is active to ensure that the embedded Quiver analysis stays on page 1.
Timestamp: March 15, 2024
The Time series start date
and Time series end date
transforms can be used to get the start and end date of the time series.
Timestamp: March 1, 2024
We recommend using a Vega chart for specific plotting requirements that allow for enhanced tooltip information.
Timestamp: March 1, 2024
The current solution is to first add "no-op" (no operation) columns via expression boards with the same name on both sides, then add "dummy" joins that do not actually join anything but allow specifying the columns, and finally perform a union. This is the recommended workaround until a more streamlined feature is developed.
Timestamp: March 15, 2024
Palantir is currently investigating the issues with changing the external interpolation from the formula itself. For now, the correct way to apply interpolation to address overlapping issues in time series data is by changing the external interpolation of the plot itself, which should work as intended.
Timestamp: April 3, 2024
For charts with more than 50,000 objects, we recommend using object and materializations charts, as these charts do not have scale limitations. You cannot exceed the 50,000 object limit in Vega charts within Quiver.
Timestamp: April 10, 2024
Users can select two different time ranges by using a union time series rather than a grouped time series plot. Currently, it is not possible to display the distribution of values as a proportion.
Timestamp: March 1, 2024
invalid type error
when using a boolean in a ternary operator in TypeScript?To resolve the invalid type error
when using a boolean in a ternary operator in TypeScript, you should convert the boolean into a number. You can do this by comparing the boolean to true
or false
and returning 1
or 0
accordingly, then use this numeric representation in your ternary operation. For example, use (booleanVariable === true ? valueIfTrue : valueIfFalse)
instead of directly using the boolean variable.
Timestamp: April 3, 2024
Combining a stacked series and a grouped series together in the same bar chart is not currently possible, but as an alternative you can use a Vega plot with two layers, with stacked bars in one layer and grouped bars in another.
Timestamp: April 9, 2024
You can't perform a pivot on a joined transform table in Quiver because the Pivot Table feature only supports an Object Set as input, not a Transform Table.
Timestamp: April 3, 2024
To plot a rolling average line along with the original data on the same chart, you need to create a time series chart without any transformations and then drag-and-drop the plots onto the same chart.
Timestamp: March 7, 2024
To change the units for the Y-axis in a plot, you can edit the y-axis unit of a plot inside the plot's configuration editor under 'unit override'. For Time Data Points (TDPs), the option to specify default units is located in Properties > Display > Time series formatting > Units.
Timestamp: April 3, 2024
Maintain a single dashboard for all charts if they are derived from the same object type to avoid reloading the same object set, which is expensive. Additionally, consider splitting the dashboard into tabs so that only the visible time series are loaded at any given time. Truncating historical data with a time range can also help if historical data isn't crucial.
Timestamp: April 3, 2024
The discrepancy in the tooltip is due to the graph's hovering behavior, which is designed to display the value of the nearest point to where the user is hovered, regardless of the interpolation setting. As for the series search, it is expected behavior to only consider internal interpolation when joining multiple series and not for individual series display; this results in the appearance of the 'previous' interpolation. These behaviors are by design and not indicative of a product bug.
Timestamp: March 27, 2024
Set the Value Axis Title in the line chart to ensure the series title persists when used as an overlay.
Timestamp: March 1, 2024
AND
to OR
on a filter card?To change the filter type from AND
to OR
, you have to create a new nested filter, which will then give you the option to choose between AND
or OR
.
Timestamp: April 18, 2024
You cannot directly invert the Y-Axis in a Heat Grid in Quiver. However, you can use Vega plot by performing your aggregations at the objects layer before converting to a transform table / Vega plot. This method gets around any scale limitations.
Timestamp: April 17, 2024
:
) treated as a special character in a Quiver search query?Colons are treated as special characters in Quiver search. As a workaround, you can add a type class to your property in the Ontology Manager application, specifically analyzer.not_analyzed
, to prevent Elasticsearch from tokenizing the property.
Timestamp: April 17, 2024
The shared time axis button only appears if the current axis is not shared. By default, all time series charts use the default shared time axis. To create and use a new shared axis, select Create new axis from the Select axis menu, then use the Shared Axis button to share the newly created axis. This new axis can then be selected for use in other charts.
Timestamp: April 18, 2024
To capture a variable from a user's selection within a Quiver chart, the suggested method is using the path: ObjectSet -> Selected ObjectSet -> Unique values of the variable -> Value at index 0, which returns a string to be used as an output. However, for charts that are outputs of transform tables, there is a limitation as they lack drill down capabilities. A potential workaround is converting the transform table workflow into an object set or materialization format.
Timestamp: August 6, 2024
From the time series plot, select Convert -> Transform table from time series. This will give you the backing time series data in tabular format in a transform table, which can be used to build a Vega plot.
Timestamp: April 17, 2024
The blank plot is probably caused by an error in the Vega spec, not in the data. To debug, copy the resolved Vega spec into the Vega editor and troubleshoot there to find and fix the error.
Timestamp: April 24, 2024
You can use a numeric formula with a ternary operator, like $A > $B ? $A : $B
.
Timestamp: August 6, 2024
No, it is not currently possible to download Vega plot charts via an API.
Timestamp: September 25, 2024
The function should output a FunctionsMap
, and it should pick up the correct type for the column.
Timestamp: September 12, 2024
To filter time series data dynamically per row in a transform table, you can choose the "Manually input start and end date/time" option and use separate start and end date columns for the filter.
Timestamp: September 30, 2024
You can overlay two time series charts by dragging the time series from the legend of one chart to the other chart.
Timestamp: September 10, 2024
Null Boolean property values are ignored in object set charts, and by default boolean values are treated as 0 and 1. You can override the labels in the Display tab.
Timestamp: September 25, 2024
To add a new column with the average of an existing numeric column to a transform table, use a Create Values transform with the default value set to the aggregation output. Note that the Create Values transform should be used in a separate transforms table.
Timestamp: September 25, 2024