Can anyone share the sample file to tryout 'boxplot' chart as mentioned in 'Box Plot Viz' addon? https://splunkbase.splunk.com/app/3157/#/details
| inputlookup boxplotexample.csv | stats median(Cost) AS median, min(Cost) AS min, max(Cost) AS max, p25(Cost) AS lowerquartile, p75(Cost) AS upperquartile by Service | fields - count | where isnotnull(median)| eval iqr=upperquartile-lowerquartile | eval lowerwhisker=median-(1.5*iqr) | eval upperwhisker=median+(1.5*iqr)
The sample file ( 'boxplotexample.csv') is found in app directory (lookups).
The sample file ( 'boxplotexample.csv') is found in app directory (lookups).