Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old April 19th, 2006, 05:57 AM
Authorized User
 
Join Date: Apr 2006
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Default Help with this code

Hi, I'm trying to transform a PMML file to Graphml, but I've had some problems.

In the PMML file there are several child elements, but the one I want to work with is: AssociationModel and their children.

<?xml version="1.0" encoding="UTF-8"?>
<PMML version="3.0" xmlns="http://www.dmg.org/PMML-3_0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Header copyright="Copyright (c) Integral Solutions Ltd., 1994 - 2005. All rights reserved.">
</Header>
<DataDictionary numberOfFields="2">
<DataField name="cardid" optype="continuous" dataType="integer">
<Extension name="storageType" value="numeric"/>
</DataField>
<DataField name="Product" optype="categorical" dataType="string">
<Extension name="storageType" value="string"/>
<Value value="beer" property="valid"/>
<Value value="cannedmeat" property="valid"/>
<Value value="cannedveg" property="valid"/>
<Value value="confectionery" property="valid"/>
<Value value="dairy" property="valid"/>
<Value value="fish" property="valid"/>
<Value value="freshmeat" property="valid"/>
<Value value="frozenmeal" property="valid"/>
<Value value="fruitveg" property="valid"/>
<Value value="softdrink" property="valid"/>
<Value value="wine" property="valid"/>
</DataField>
</DataDictionary>
<AssociationModel modelName="SHOPPING_ASSOC" algorithmName="Carma" functionName="associationRules" numberOfTransactions="939" minimumSupport="0.177848775292865" minimumConfidence="0.32013201320132" numberOfItems="7" numberOfItemsets="10" numberOfRules="18">
<MiningSchema>
<MiningField name="cardid" usageType="group"/>
<MiningField name="Product" usageType="active"/>
</MiningSchema>
<Item id="5" value="wine"/>
<Item id="7" value="fruitveg"/>
<Item id="4" value="confectionery"/>
<Item id="3" value="frozenmeal"/>
<Item id="6" value="fish"/>
<Item id="2" value="cannedveg"/>
<Item id="1" value="beer"/>
<Itemset id="9" numberOfItems="1" support="0.31096912">
<ItemRef itemRef="6"/>
</Itemset>
<AssociationRule id="1" support="0.15548456" confidence="0.874251497005988" antecedent="1" consequent="2" lift="2.718285283737161"/>
</AssociationModel>
</PMML>

The next code is the stylesheet and the problem is that I can't get the xslt processor reads the AssociationModel only and then with the template process the child elements. Any suggestion? Thanks in advance.

?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

    <xsl:output method="xml"/>

    <xsl:template match="/">
        <xsl:comment>This GraphML was generated from a PMML</xsl:comment>
        <graphml xmlns="http://graphml.graphdrawing.org/xmlns">
            <graph edgedefault="undirected">
                <xsl:apply-templates select="AssociationModel"/>
            </graph>
        </graphml>
    </xsl:template>

    <xsl:template match="PMML">
        <xsl:comment>read pmml tag</xsl:comment>
             <xsl:apply-templates select="AssociationModel"/>
    </xsl:template>

    <xsl:template match="AssociationModel">
        <xsl:comment>read association_model tag</xsl:comment>
        <xsl:apply-templates/>
    </xsl:template>

    <xsl:template match="Item">
       <xsl:element name="node">
                <xsl:attribute name="id">
                    <xsl:comment>read Item tag</xsl:comment>
                    <xsl:value-of select="id"/>
                </xsl:attribute>
       </xsl:element>
    </xsl:template>

    <xsl:template match="Itemset">
        <xsl:apply-templates/>
    </xsl:template>

    <xsl:template match="AssociationRule">
    </xsl:template>

</xsl:stylesheet>


 
Old April 19th, 2006, 06:28 AM
joefawcett's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 3,074
Thanks: 1
Thanked 38 Times in 37 Posts
Default

See
http://www.dpawson.co.uk/xsl/sect2/N5536.html
especially numbers 13 and 23.

--

Joe (Microsoft MVP - XML)
 
Old April 19th, 2006, 07:11 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

Your source document is in a namespace:

<PMML version="3.0" xmlns="http://www.dmg.org/PMML-3_0"

so you need to qualify all names with a prefix:

<xsl:stylesheet
  xmlns:pmml="http://www.dmg.org/PMML-3_0"

<xsl:template match="pmml:PMML">
  ...

In XSLT 2.0 you can say xpath-default-namespace="http://www.dmg.org/PMML-3_0"

on the xsl:stylesheet element (or elsewhere)

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
 
Old April 20th, 2006, 09:31 AM
Authorized User
 
Join Date: Apr 2006
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thanks for the advice Joefawcett ;)

 
Old April 20th, 2006, 09:32 AM
Authorized User
 
Join Date: Apr 2006
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Default

It works now, thanks mhkay!

 
Old December 6th, 2006, 07:20 PM
Registered User
 
Join Date: Dec 2006
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Hi,

If you're interested I've done a little fun work with PMML. Mostly as a means to learn a bit of VB.Net and test PMML exported by SPSS Clementine. Some of it include using XSLT to parse association models and convert into HTML. See the links below.

KDKeys Data Mining with Clementine;
http://www.kdkeys.net/forums/thread/6495.aspx

SourceForge PMML homepage;
http://sourceforge.net/forum/forum.php?forum_id=187860

Cheers

Tim
 
Old May 27th, 2007, 02:48 AM
Registered User
 
Join Date: May 2007
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Default

HI, I need to transform a PMML file to SVG format but I´dont know how, please help me.....

<?xml version="1.0" ?>
  <PMML version="3.1" xmlns="http://www.dmg.org/PMML-3_1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Header copyright="dmg.org"/>
    <DataDictionary numberOfFields="3">
      <DataField name="marital status" optype="categorical" dataType="string">
          <Value value="s"/>
          <Value value="d"/>
          <Value value="m"/>
      </DataField>
      <DataField name="age" optype="continuous" dataType="double"/>
      <DataField name="salary" optype="continuous" dataType="double"/>
    </DataDictionary>
    <ClusteringModel modelName="Mini Clustering"
          functionName="clustering"
          modelClass="centerBased"
          numberOfClusters="2">
      <MiningSchema>
               <MiningField name="marital status"/>
               <MiningField name="age"/>
               <MiningField name="salary"/>
      </MiningSchema>

      <ComparisonMeasure kind="distance">
               <squaredEuclidean/>
      </ComparisonMeasure>

      <ClusteringField field="marital status"
                      compareFunction="absDiff"/>
      <ClusteringField field="age"
                      compareFunction="absDiff"/>
      <ClusteringField field="salary"
                      compareFunction="absDiff"/>
      <CenterFields>
        <DerivedField name="c1" optype="continuous" dataType="double">
          <NormContinuous field="age">
               <LinearNorm orig="45" norm="0"/>
               <LinearNorm orig="82" norm="0.5"/>
               <LinearNorm orig="105" norm="1"/>
          </NormContinuous>
        </DerivedField>
        <DerivedField name="c2" optype="continuous" dataType="double">
          <NormContinuous field="salary">
               <LinearNorm orig="39000" norm="0"/>
               <LinearNorm orig="39800" norm="0.5"/>
               <LinearNorm orig="41000" norm="1"/>
          </NormContinuous>
        </DerivedField>
        <DerivedField name="c3" optype="continuous" dataType="double">
          <NormDiscrete field="marital status" value="m"/>
        </DerivedField>
        <DerivedField name="c4" optype="continuous" dataType="double">
          <NormDiscrete field="marital status" value="d"/>
        </DerivedField>
        <DerivedField name="c5" optype="continuous" dataType="double">
          <NormDiscrete field="marital status" value="s"/>
        </DerivedField>
      </CenterFields>
      <MissingValueWeights>
        <Array n="5" type="real">1 1 1 1 1</Array>
      </MissingValueWeights>
      <Cluster name="marital status is d or s">
        <Array n="5" type="real">
               0.524561 0.486321 0.128427 0.459188 0.412384</Array>
      </Cluster>
      <Cluster name="marital status is m">
        <Array n="5" type="real">
               0.69946 0.419037 0.591226 0.173521 0.235253</Array>
      </Cluster>
    </ClusteringModel>
  </PMML>






Similar Threads
Thread Thread Starter Forum Replies Last Post
Urgent:hard disk serial code and vb code ivanlaw Pro VB 6 0 July 25th, 2007 04:05 AM
VB: .Exe file, serial code and activation code ivanlaw Pro VB 6 8 July 6th, 2007 05:44 AM
code clinic - Why wont example asp code work? jardbf Classic ASP Basics 3 April 27th, 2006 06:22 PM
Writing Client Side Script from Code-Behind code sajid_pk Classic ASP Databases 1 January 18th, 2005 12:53 AM
disable forum code within [code] blocks? nikolai Forum and Wrox.com Feedback 0 October 23rd, 2003 07:52 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.