[xsl] Calculating Averages

Subject: [xsl] Calculating Averages
From: "Sendrey, John" <jsendrey@xxxxxxxxxxx>
Date: Wed, 26 Jun 2002 12:58:27 -0700
Just wondering how i could get an average topic score (per topic) where
score of 0 are excluded.

------
OUTPUT:
------
<topics>
	<topic>
		<id>1</id>
		<mean>5</mean>
	</topic>
	<topic>
		<id>2</id>
		<mean>3.5</mean>
	</topic>
	<topic>
		<id>3</id>
		<mean>5</mean>
	</topic>
	<topic>
		<id>4</id>
		<mean>5</mean>
	</topic>
</topics>
-----
INPUT:
-----
.
.
.
<eval>
	<id>1</id>
	<topics>
		<topic>
			<id>1</id>
			<score>5</score>
		</topic>
		<topic>
			<id>2</id>
			<score>4</score>
		</topic>
		<topic>	
			<id>4</id>
			<score>5</score>
		</topic>
	</topics>
</eval>
<eval>
	<id>5</id>
	<topics>
		<topic>	
			<id>2</id>
			<score>3</score>	
		</topic>
		<topic>	
			<id>3</id>
			<score>5</score>
		</topic>
		<topic>
			<id>4</id>
			<score>0</score>
		</topic>
	</topics>
</eval>
.
.
.

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


Current Thread