I'm using Tableau Desktop 2022.0.4
This is what my data looks like (filtered by date):
I would like to be able to get the value associated with the max value of time for the selected date. In the example above will be 46.1 (associated with 15). Times of the day with their values can be different each day. The source is filtered by date.
I have tried using FIXED but I cannot understand completely how to use it or if it is the right thing to use for this situation.
Thank you for your help with this.
I have setup a netdata server to monitor application metrics, and would like to use statsd to collect metrics data. After research some days, I still have no idea of how to set different resolution on different chart.
For example, I would like to show total sales every hour, however the request count every minute. It seem netdata will only refresh the chart every one second(the global setting of 'update every'). So how to make netdata refresh total sales chart per hour(a lower resolution), and the total request count per minute? or I just misunderstood netdata/statsd?
Thanks in advance.
I have a series of events ranging from 1 to 8 hours that are tagged with a name over the last 2 years. Using the templating function I can move display the different events. My problem is that the time range doesn't rescale when i want to display an event that is outside the currently displayed time range. Ideally I would like to dynamically set the URL with the timestamp encoded from the max and min time of the database (influxdb) query. Any ideas on what I can do?
Here is a screenshot of my problem
Every example of a time-series graph I've seen for Google Data Studio has a metric plotted per day. Is there any way to configure the granularity of the time axis (hour, month, etc)?
I want to show the count of events per hour throughout one day.
My columns are in bigquery as types datetime:TIMESTAMP and count:INTEGER
This is old, but its high in search results, and I found the correct answer here: https://www.en.advertisercommunity.com/t5/Data-Studio/Is-it-possible-to-aggregate-by-hour/td-p/1104815
Click the pencil next to the datasource, on your timestamp, click on the type column, and change "Date(YYYYMMDD" to another format, such as DATE HOUR("YYYYMMDDHH") to get hourly aggregation on the graphs.
Now, there seems to be a straightforward way:
Assuming that you have a Time Series plot, use Timestamp for your dimension and want to show hourly aggregated values.
Select the dimension's preferences:
Change Type to Date Hour
Edit: Based on new updates to Data Studio, #Brian's answer above is the correct one.
You can create a calculated field with the TODATE funciton. Example formula can be TODATE(source_field, 'SECONDS', '%Y%m%d%H'). Then this field should be marked as Date(YYYYMMDDHH) in the field editing screen.
There is a way to do this. If the data is broken up hour by hour, make the hour column(s) the Time Dimension. If all of the hour data isn't in a single column, you may want to reformat your data (manually or using a data prep source, your choice). Or you can go into the time setting of the field and change it into hours.
TL;DR: Have a lot of points, dataGrouping is on, how do I update an individual point?
I'm trying to make a HighCharts/HighStock chart that shows "per minute" averages over time. I do this by loading in a bunch of data that represents the "counts" and there is one record for every minute. Then, depending on how much chart data I have, I use the HighCharts dataGrouping with average approximation method to group all of the data.
Here's the kicker, I would like the most recent minute to update every second with its current count. Then, when we're on to the next minute, add a point and keep going. Typically I would do something like this to do that:
chart.series[0].data[99].update(newVal)
The problem is, data is empty by design when dataGrouping is on. I can see some point objects in series.points but updating them doesn't seem to do what I intend. I can also access and update the original data at series.options.data but updating it there doesn't seem to update the chart.
Here is a basic fiddle demonstrating the problem. I have ~30 minutes of random consecutive data there and I have forced it to group in 5 minute windows. Anyone who can make an individual point update when I press that button gets my gratitude and a shiny green check mark next to your answer.
http://jsfiddle.net/kZRCa/2/
$('#button').click(function() {
var chart = $('#container').highcharts();
var series = chart.get("S1");
var _data = series.options.data;
// try and make a point (ANY POINT) update
_data[10][1] = 200;
series.setData(_data);
});
Edit: forgot to mention that I also gave the series an id so it was easier to get() it.