Tagged with rank - Visokio Forums http://forums.visokio.com/discussions/tagged/rank/feed.rss Mon, 30 Oct 17 15:48:07 -0400 Tagged with rank - Visokio Forums en-CA Time Series Growth Calculation - Getting Incremental Numbers from Cumulative Total http://forums.visokio.com/discussion/3127/time-series-growth-calculation-getting-incremental-numbers-from-cumulative-total Thu, 12 May 2016 17:53:16 -0400 MPatel 3127@/discussions I have data that's coming in cumulatively:

Date | # of Participants
4/1/2016 | 400
4/2/2016 | 500
4/3/2016 | 625

I want a field that will calculate the difference from the day before. So for 4/2/2016, it would show 100 (500-400). For 4/3/2016 it would show 125 (625-500). Please let me know what formula to use. Thanks!]]>
Ranking top x items - aggregated values http://forums.visokio.com/discussion/3118/ranking-top-x-items-aggregated-values Mon, 18 Apr 2016 11:43:53 -0400 bernardpi 3118@/discussions
This is all done using for loops which aren't quick and results in the content view taking about 7000ms on a fast machine to load and on slow machines, Omniscope times out and the execution doesn't complete so the content view is blank.

I am not sure how to use the RANK function to do this (if indeed it can) as the docs are a little confusing and there aren't many decent examples. I would like to keep the calculation in the content view if possible.

Thanks for your help in advance,

]]>
Missing Data: Automatically filling in the blanks http://forums.visokio.com/discussion/2573/missing-data-automatically-filling-in-the-blanks Wed, 28 May 2014 13:58:50 -0400 paola 2573@/discussions
In the dataset below, missing values in the field [Ctr] should take their value from the previous day OR the last filled in date, for the same Campaign. A Sort operation block can be used for better transparency, to order [Date] and [Campaign].

Formula below will pick the last available value for each combination of Date/Campaign:
IF([Ctr]=null,
SUBSET_LASTNONNULL([Ctr], SUBSET2([Campaign],[Rank Date],[Campaign],[Rank Date],"=","<")),
[Ctr])


It relies on the [Date] ranking:
RANK([Date],[Date],true,false, SUBSET([Campaign]))
For each campaign ranking runs from 1 to n, with the earliest date being ranked 1st.

In the case where their is no logical ranking criteria to sort inside the data set, the record number field may be useful (see below)

image]]>
Ranking: Wanting to Rank Dates Distinctly http://forums.visokio.com/discussion/2827/ranking-wanting-to-rank-dates-distinctly Fri, 23 Jan 2015 12:35:45 -0500 aeastwood 2827@/discussions Filtering: Dynamic rankings in a filtered view? http://forums.visokio.com/discussion/2821/filtering-dynamic-rankings-in-a-filtered-views Wed, 21 Jan 2015 03:15:25 -0500 nash 2821@/discussions At the same time I need to calculate what is the share of the every of these three brands of all the brands which are selected.
And the last requirement is to show the difference for every brand to the year before.

So far I work it out for all brand which are in the data with formulas in the fields.
However I would need more dynamic.

Is there a way to get it are you working on it?]]>
Pivot View: Sorting and Ranking aggregated records/fields? http://forums.visokio.com/discussion/2705/pivot-view-sorting-and-ranking-aggregated-recordsfieldss Mon, 01 Sep 2014 07:22:52 -0400 tagarw 2705@/discussions Please see attachment for the problem and help me with this. Let me know if you need more information.
]]>
Filtering: Re-ranking filtered data sets? http://forums.visokio.com/discussion/2707/filtering-re-ranking-filtered-data-setss Fri, 05 Sep 2014 06:16:58 -0400 abhishekdas1989 2707@/discussions
I have a medium sized data set ~2500 records. My filter is a checkbox filter (I can select any number of records, filter field is non-repeating text). The idea here is to make this filtered data a subset as I want to perform some operations on this filtered data.

The end goal is to assign a rank to each record of this randomly selected subset of data. So, if an additioal record is selected, the ranks may change based on the field value of the new record.]]>
Formulae: Calculating the average of a 'top-N' subset? http://forums.visokio.com/discussion/2702/formulae-calculating-the-average-of-a-top-n-subsets Mon, 01 Sep 2014 04:04:47 -0400 tagarw 2702@/discussions I have a Table view in which data is changing according to the filters. For some selection suppose it has n number of records and 3 columns.

For one column I want to calculate average of top 20% values of it. How to write the formula for the same?]]>
Formulae: Filtering top 10% of subset http://forums.visokio.com/discussion/2706/formulae-filtering-top-10-of-subset Thu, 04 Sep 2014 04:14:52 -0400 abhishekdas1989 2706@/discussions
I intend to perform some basic calculations (mean) on a subset of the records in a table. I used Subset_Mean(field name, RowIndexSubset). However, it returns a null value. The RowIndexSubset is calculated properly (verified it using Subset_UniqueCount).

The main idea is to get the top 10% of the total records and then calculate the mean of the values in a specific field. This total records will change based on a filter selection (this filtering is working fine).]]>
Ranking: Sorting based on variables? http://forums.visokio.com/discussion/2675/ranking-sorting-based-on-variabless Fri, 08 Aug 2014 03:41:06 -0400 tagarw 2675@/discussions
See attachment for reference.

Thanks..]]>
Formulae: RANK Syntax-Ranking on aggregated values, etc http://forums.visokio.com/discussion/2479/formulae-rank-syntax-ranking-on-aggregated-values-etc Fri, 21 Feb 2014 14:27:18 -0500 paola 2479@/discussions Some of the formulas used:
Rank function Syntax: RANK(value, field, isAscending, includeNulls, dataSubset)
 
Ranking Spend=
RANK([Spend]) 
# simple Rank comparing all values in the Spend field  
 
Rank Spend per Week=
RANK([Spend], [Spend], false, false, SUBSET([Week])) 
#Ranking Spend values inside each Week  
 
SubRank Clicks =   
RANK([Clicks], [Clicks], false, false,subset([Rank Spend per Week] )) 
# secondary rank field, based on the Clicks value. Meaningful when multiple rows share the same [Rank spend per Week] value 
 
Spend per Keyword=
SUBSET_SUM([Spend], SUBSET([Keyword])) 
# total Spend for each Keyword 
 
[One]=1 
# basis for running total indexing 
 
Running total per Keyword:
RUNNINGTOTAL([One], SUBSET([Keyword]))  
 
Rank Totals per Keyword=  
IF([Running total per Keyw]>1, null,
RANK([Spend per Keyword], [Spend per Keyword], false, true, SUBSET([Running total per Keyw],1,"="))) 
# ignoring the values greater than 1, rank compares only the subset sum values where [Running total per Keyw] is 1, ensuring that only one value per category is compared.  ]]>
Idea: Filtering- Pareto-'Top/Bottom N' filtering? http://forums.visokio.com/discussion/2582/idea-filtering-pareto-topbottom-n-filterings Sun, 08 Jun 2014 18:13:45 -0400 stuartjmccoll 2582@/discussions
I'd appreciate if the record filter was changed so there is a setting to grab the top ten (or N) items for each category. At present this isn't possible and you have to do four steps to replicate this.

As an example, I'm working with Google Analytics data for multiple websites (using the API connector which is very handy) and I'd like to see the top 10 landing pages for each site. Not the most exciting request, but I imagine this has applications elsewhere. Thanks]]>
Formulae: Dense RANK Function? http://forums.visokio.com/discussion/1996/formulae-dense-rank-functions Thu, 24 Jan 2013 17:19:38 -0500 bgrovens 1996@/discussions
Thanks for the help, Brian]]>
Idea: Filtering-Pareto-'Top/Bottom N' sorting/display? http://forums.visokio.com/discussion/1214/idea-filtering-pareto-topbottom-n-sortingdisplays Mon, 16 Jan 2012 05:20:01 -0500 indranildatta 1214@/discussions
I have been asked by quite a few of our clients and I think this feature would be a very powerful addition to the views in DataExplorer.

The simplest use case is as follows:

I have a Bar/Line view with measure X and split by one single field [Field1]. With this new feature, I'd be able to say, "Show only top 10 entries" and an automatic filter will be attached to that Bar/LIne view.

Building on the simplest case, we can think of further generalisations like:

1. Configurable number of entries, i.e. 'top/bottom 'N' entries', N to be chosen by user
2. Top/Bottom 'N' entries, rather than only top entries
3. Extension of the same concept over aggregated measures
4. Function support to enable the same feature through formulae

Please let me know if any of this is possible.

Cheers! Indranil]]>
Idea: Add DenseRank function? http://forums.visokio.com/discussion/1079/idea-add-denserank-functions Wed, 02 Nov 2011 04:35:29 -0400 WKeith 1079@/discussions Ranking: Suppliers by total spend? http://forums.visokio.com/discussion/847/ranking-suppliers-by-total-spends Mon, 27 Jun 2011 09:47:19 -0400 gilgorev 847@/discussions
A good example would be to look at the Visokio example on http://www.visokio.com/kb/subset-functions-2-5:
How do I add a column to it that will show the number 1 against John Swires and 2 against Anne Campbell, reflecting their ranking in terms of total spend?

Thanks!

Gil]]>
Bar Chart Order http://forums.visokio.com/discussion/668/bar-chart-order Thu, 03 Mar 2011 15:36:40 -0500 jforero 668@/discussions Table View: Displaying only top 'N' values http://forums.visokio.com/discussion/2677/table-view-displaying-only-top-n-values Mon, 11 Aug 2014 02:55:05 -0400 tagarw 2677@/discussions I have one Table View in an Omniscope tab in which I am selecting certain rows from source DB say 100. Then I am creating certain filters on the Table View data which reduces the data to 50. And then a Sort.

After sort I want to display only top 5 records in final view of table. I am not able to find anything to do that. Can someone please help on limiting the records to 5.

Please let me know if you need more information.

Thanks. ]]>