[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Filtering Numeric Output with Changing Parameter

Subject: Filtering Numeric Output with Changing Parameter
From: Tim Lewis <lewist@xxxxxxxxxxx>
Date: Fri, 19 Jul 2002 16:55:24 -0400
microsoft xmldiff
I'd like to take a pile of numeric data and filter it down to a smaller
pile by selecting for output only values that change by more than a
threshold amount from the beginning value.  If a value gets selected for

output, then the next output value would have to be different from it by

more than the threshold.  For example, say I have a pile of stock price
data and I want to plot only values that change by more than 1.00.  If
the first value is 27.50, then I want to look through the data and
ignore it until I find a price >= 28.50 or <= 26.50.  If I find a price
of 28.50, then I want to continue my search, but now I am looking for
prices >= 29.50 or <= 27.50.


So given:

<stock>
   <time>0.0</time>
   <price>27.50</price>
</stock>
<stock>
   <time>1.0</time>
   <price>27.75</price>
</stock>
<stock>
   <time>3.0</time>
   <price>27.20</price>
</stock>
<stock>
   <time>4.0</time>
   <price>28.50</price>
</stock>
<stock>
   <time>5.0</time>
   <price>28.25</price>
</stock>
<stock>
   <time>6.0</time>
   <price>27.75</price>
</stock>
<stock>
   <time>7.0</time>
   <price>27.80</price>
</stock>
<stock>
   <time>8.0</time>
   <price>25.50</price>
</stock>

I want:

<stock>
   <time>0.0</time>
   <price>27.50</price>
</stock>
<stock>
   <time>4.0</time>
   <price>28.50</price>
</stock>
<stock>
   <time>8.0</time>
   <price>25.50</price>
</stock>

I understand that I cannot use a for-each loop because the value of my
comparison "variables" needs to be variable.  I also understand that I
need to use recursion to do it.  However, I struggle mightily with
procedural programming, so functional programming and recursion chew me
up and spit me out.

Any guidance would be appreciated.  An actual named template to get this

job done would be even more wondeful!

TIA,

Tim Lewis


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.