예제 #1
0
파일: Source.cs 프로젝트: vdaron/robin.net
		public virtual double GetPercentile(long tStart, long tEnd, double percentile)
		{
			var agg = new Aggregator(Timestamps, Values);
			return agg.GetPercentile(tStart, tEnd, percentile);
		}
예제 #2
0
파일: Source.cs 프로젝트: vdaron/robin.net
		public virtual Aggregates GetAggregates(long tStart, long tEnd)
		{
			var agg = new Aggregator(Timestamps, Values);
			return agg.GetAggregates(tStart, tEnd);
		}