<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://ontometrics.informatik.uni-rostock.de:80/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bl137</id>
		<title>OntoMetrics - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://ontometrics.informatik.uni-rostock.de:80/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bl137"/>
		<link rel="alternate" type="text/html" href="http://ontometrics.informatik.uni-rostock.de:80/wiki/index.php/Special:Contributions/Bl137"/>
		<updated>2026-04-04T19:40:39Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.26.2</generator>

	<entry>
		<id>http://ontometrics.informatik.uni-rostock.de:80/wiki/index.php?title=Schema_Metrics&amp;diff=265</id>
		<title>Schema Metrics</title>
		<link rel="alternate" type="text/html" href="http://ontometrics.informatik.uni-rostock.de:80/wiki/index.php?title=Schema_Metrics&amp;diff=265"/>
				<updated>2016-09-07T14:48:03Z</updated>
		
		<summary type="html">&lt;p&gt;Bl137: /* Class Relation Ratio */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Schema metrics address the design of the ontology. Although we cannot definitely know if the ontology design correctly models the domain knowledge, metrics in this category indicate the richness, width, depth, and inheritance of an ontology schema design. The most significant metrics in this category are described next.&lt;br /&gt;
&lt;br /&gt;
==Attribute Richness==&lt;br /&gt;
The number of attributes (slots) that are defined for each class can indicate both the quality of ontology design and the amount of information pertaining to instance data. In general we assume that the more slots that are defined the more knowledge the ontology conveys.&lt;br /&gt;
&lt;br /&gt;
The '''attribute richness (AR)''' is defined as the average number of attributes (slots) per class. It is computed as the '''number attributes for all classes (att)''' divided by the '''number of classes (C)'''.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;AR = \dfrac{|ATT|}{|C|}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Usually, only the functional attributes are counted to calculate this metric, as stated in the OWL definition. In our metric calculation, we omit this restriction and use all declared attributes to calculate, because not many modellers use the possibility of defining functional attributes. Also, the datatype are being handled as attributes as well.&lt;br /&gt;
&lt;br /&gt;
[[Schema_Metrics#Sources | Source 1]]&lt;br /&gt;
&lt;br /&gt;
==Inheritance Richness==&lt;br /&gt;
&lt;br /&gt;
'''Inheritance Richness (IR)''' measure describes the distribution of information across different levels of the ontology’s inheritance tree or the fan-out of parent classes. This is a good indication of how well knowledge is grouped into different categories and subcategories in the ontology. This measure can distinguish a horizontal ontology (where classes have a large number of direct subclasses) from a vertical ontology (where classes have a small number of direct subclasses). An ontology with a low inheritance richness would be of a deep (or vertical) ontology, which indicates that the ontology covers a specific domain in a detailed manner, while an ontology with a high IR would be a shallow (or horizontal) ontology, which indicates that the ontology represents a wide range of general knowledge with a low level of detail.&lt;br /&gt;
&lt;br /&gt;
The inheritance richness of the schema (IR) is defined as the average number of subclasses per class.&lt;br /&gt;
The number of subclasses of a class is defined as &amp;lt;math&amp;gt; |H^C(C_1,C_i)|&amp;lt;/math&amp;gt;. '''H''' is the '''number of inheritance relationships'''.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;IR = \frac{\sum_{C_i \in C}|H^C(C_1,C_i)|}{|C|}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Schema_Metrics#Sources | Source 1]]&lt;br /&gt;
&lt;br /&gt;
==Relationship Richness==&lt;br /&gt;
&lt;br /&gt;
This metric reflects the diversity of the types of relations in the ontology. An ontology that contains only inheritance relationships usually conveys less information than an ontology that contains a diverse set of relationships. The relationship richness is represented as the percentage of the (non-inheritance) relationships between classes compared to all of the possible connections that can include inheritance and non-inheritance relationships.&lt;br /&gt;
&lt;br /&gt;
The '''relationship richness (RR)''' of a schema is defined as the ratio of the '''number of (non-inheritance) relationships (P)''', divided by the '''total number of relationships''' defined in the schema (the sum of the '''number of inheritance relationships (H)''' and '''non-inheritance relationships (P)''').&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;RR = \frac{|P|}{|H|+|P|}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: The following relationships are being counted as non-inherited relationships:&lt;br /&gt;
&lt;br /&gt;
Object Properties,&lt;br /&gt;
&lt;br /&gt;
Equivalent Classes,&lt;br /&gt;
&lt;br /&gt;
Disjoint Classes.&lt;br /&gt;
&lt;br /&gt;
The subclasses (Subclasses of) are being handled as inheritance relationships.&lt;br /&gt;
&lt;br /&gt;
[[Schema_Metrics#Sources | Source 1]]&lt;br /&gt;
&lt;br /&gt;
==Axiom Class Ratio==&lt;br /&gt;
&lt;br /&gt;
This metric describes the ratio between axioms and classes. It is calculated as the average amount of axioms per class.&lt;br /&gt;
 &amp;lt;math&amp;gt;Axiom class ratio=\frac{Axioms}{Classes}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Schema_Metrics#Sources | Source 2]]&lt;br /&gt;
&lt;br /&gt;
==Inverse Relations Ratio==&lt;br /&gt;
&lt;br /&gt;
This metric describes the ratio between the inverse relations and all relations.&lt;br /&gt;
It is calculated as follows:&lt;br /&gt;
 &amp;lt;math&amp;gt;Inverse Relations Ratio = \frac{Inverse Object Properties + Inverse Functional Data Properties}{All Object Properties + All Functional Data Properties}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Schema_Metrics#Sources | Source 2]]&lt;br /&gt;
&lt;br /&gt;
==Class Relation Ratio==&lt;br /&gt;
&lt;br /&gt;
This metric describes the ratio between the classes and the relations in the ontology.&lt;br /&gt;
 &amp;lt;math&amp;gt;Class Relation Ratio =\frac{Classes}{Relationships}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following ontology components are counted as relationships:&lt;br /&gt;
Object Properties,&lt;br /&gt;
&lt;br /&gt;
Equivalent Classes,&lt;br /&gt;
&lt;br /&gt;
Disjoint Classes,&lt;br /&gt;
&lt;br /&gt;
Subclasses(Subclass of).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Schema_Metrics#Sources | Source 2]]&lt;br /&gt;
&lt;br /&gt;
==Attribute-Class Ratio==&lt;br /&gt;
&lt;br /&gt;
This metric represents the relation between the classes containing attributes and all classes. The difference to attribute richness is that not the amount of attributes is counted. It is only counted whether a class has attributes or not.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;AttributeClass Ratio=\frac{Classes With Attributes}{Number Of Classes}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Equivalence Ratio==&lt;br /&gt;
&lt;br /&gt;
This metric calculates the ratio between similar classes and all classes in the ontology.&lt;br /&gt;
&lt;br /&gt;
It is being calculated as follows:&lt;br /&gt;
 &amp;lt;math&amp;gt;Equivalence Ratio =\frac{Same Classes}{Number Of All Classes}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Sources==&lt;br /&gt;
&lt;br /&gt;
#''Samir Tartir, I. Budak Arpinar, Amit P. Sheth: Ontological Evaluation and Validation&amp;lt;br /&amp;gt; In: Theory and Applications of Ontology: Computer Applications 2010, pp 115-130.&amp;lt;br /&amp;gt; http://link.springer.com/chapter/10.1007%2F978-90-481-8847-5_5''&lt;br /&gt;
#''Aldo Gangemi, Carola Catenacci, Massimiliano Ciaramita, Jos Lehmann: &amp;lt;br /&amp;gt;Ontology evaluation and validation - An integrated formal model for the quality diagnostic task&amp;lt;br /&amp;gt; September 2005, pp 19-20.  &amp;lt;br /&amp;gt;http://www.loa.istc.cnr.it/old/Files/OntoEval4OntoDev_Final.pdf&lt;/div&gt;</summary>
		<author><name>Bl137</name></author>	</entry>

	<entry>
		<id>http://ontometrics.informatik.uni-rostock.de:80/wiki/index.php?title=Schema_Metrics&amp;diff=264</id>
		<title>Schema Metrics</title>
		<link rel="alternate" type="text/html" href="http://ontometrics.informatik.uni-rostock.de:80/wiki/index.php?title=Schema_Metrics&amp;diff=264"/>
				<updated>2016-09-07T14:20:03Z</updated>
		
		<summary type="html">&lt;p&gt;Bl137: /* Relationship Richness */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Schema metrics address the design of the ontology. Although we cannot definitely know if the ontology design correctly models the domain knowledge, metrics in this category indicate the richness, width, depth, and inheritance of an ontology schema design. The most significant metrics in this category are described next.&lt;br /&gt;
&lt;br /&gt;
==Attribute Richness==&lt;br /&gt;
The number of attributes (slots) that are defined for each class can indicate both the quality of ontology design and the amount of information pertaining to instance data. In general we assume that the more slots that are defined the more knowledge the ontology conveys.&lt;br /&gt;
&lt;br /&gt;
The '''attribute richness (AR)''' is defined as the average number of attributes (slots) per class. It is computed as the '''number attributes for all classes (att)''' divided by the '''number of classes (C)'''.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;AR = \dfrac{|ATT|}{|C|}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Usually, only the functional attributes are counted to calculate this metric, as stated in the OWL definition. In our metric calculation, we omit this restriction and use all declared attributes to calculate, because not many modellers use the possibility of defining functional attributes. Also, the datatype are being handled as attributes as well.&lt;br /&gt;
&lt;br /&gt;
[[Schema_Metrics#Sources | Source 1]]&lt;br /&gt;
&lt;br /&gt;
==Inheritance Richness==&lt;br /&gt;
&lt;br /&gt;
'''Inheritance Richness (IR)''' measure describes the distribution of information across different levels of the ontology’s inheritance tree or the fan-out of parent classes. This is a good indication of how well knowledge is grouped into different categories and subcategories in the ontology. This measure can distinguish a horizontal ontology (where classes have a large number of direct subclasses) from a vertical ontology (where classes have a small number of direct subclasses). An ontology with a low inheritance richness would be of a deep (or vertical) ontology, which indicates that the ontology covers a specific domain in a detailed manner, while an ontology with a high IR would be a shallow (or horizontal) ontology, which indicates that the ontology represents a wide range of general knowledge with a low level of detail.&lt;br /&gt;
&lt;br /&gt;
The inheritance richness of the schema (IR) is defined as the average number of subclasses per class.&lt;br /&gt;
The number of subclasses of a class is defined as &amp;lt;math&amp;gt; |H^C(C_1,C_i)|&amp;lt;/math&amp;gt;. '''H''' is the '''number of inheritance relationships'''.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;IR = \frac{\sum_{C_i \in C}|H^C(C_1,C_i)|}{|C|}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Schema_Metrics#Sources | Source 1]]&lt;br /&gt;
&lt;br /&gt;
==Relationship Richness==&lt;br /&gt;
&lt;br /&gt;
This metric reflects the diversity of the types of relations in the ontology. An ontology that contains only inheritance relationships usually conveys less information than an ontology that contains a diverse set of relationships. The relationship richness is represented as the percentage of the (non-inheritance) relationships between classes compared to all of the possible connections that can include inheritance and non-inheritance relationships.&lt;br /&gt;
&lt;br /&gt;
The '''relationship richness (RR)''' of a schema is defined as the ratio of the '''number of (non-inheritance) relationships (P)''', divided by the '''total number of relationships''' defined in the schema (the sum of the '''number of inheritance relationships (H)''' and '''non-inheritance relationships (P)''').&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;RR = \frac{|P|}{|H|+|P|}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: The following relationships are being counted as non-inherited relationships:&lt;br /&gt;
&lt;br /&gt;
Object Properties,&lt;br /&gt;
&lt;br /&gt;
Equivalent Classes,&lt;br /&gt;
&lt;br /&gt;
Disjoint Classes.&lt;br /&gt;
&lt;br /&gt;
The subclasses (Subclasses of) are being handled as inheritance relationships.&lt;br /&gt;
&lt;br /&gt;
[[Schema_Metrics#Sources | Source 1]]&lt;br /&gt;
&lt;br /&gt;
==Axiom Class Ratio==&lt;br /&gt;
&lt;br /&gt;
This metric describes the ratio between axioms and classes. It is calculated as the average amount of axioms per class.&lt;br /&gt;
 &amp;lt;math&amp;gt;Axiom class ratio=\frac{Axioms}{Classes}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Schema_Metrics#Sources | Source 2]]&lt;br /&gt;
&lt;br /&gt;
==Inverse Relations Ratio==&lt;br /&gt;
&lt;br /&gt;
This metric describes the ratio between the inverse relations and all relations.&lt;br /&gt;
It is calculated as follows:&lt;br /&gt;
 &amp;lt;math&amp;gt;Inverse Relations Ratio = \frac{Inverse Object Properties + Inverse Functional Data Properties}{All Object Properties + All Functional Data Properties}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Schema_Metrics#Sources | Source 2]]&lt;br /&gt;
&lt;br /&gt;
==Class Relation Ratio==&lt;br /&gt;
&lt;br /&gt;
This metric describes the ratio between the classes and the relations in the ontology.&lt;br /&gt;
 &amp;lt;math&amp;gt;Class Relation Ratio =\frac{Classes}{Relationships}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following ontology components are counted as relationships:&lt;br /&gt;
Object Properties,&lt;br /&gt;
&lt;br /&gt;
Equivalent Classes,&lt;br /&gt;
&lt;br /&gt;
Disjoint Classes,&lt;br /&gt;
&lt;br /&gt;
Class Assertion,&lt;br /&gt;
&lt;br /&gt;
Same individuals,&lt;br /&gt;
&lt;br /&gt;
Different individuals,&lt;br /&gt;
&lt;br /&gt;
Subclasses(Subclass of).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Schema_Metrics#Sources | Source 2]]&lt;br /&gt;
&lt;br /&gt;
==Attribute-Class Ratio==&lt;br /&gt;
&lt;br /&gt;
This metric represents the relation between the classes containing attributes and all classes. The difference to attribute richness is that not the amount of attributes is counted. It is only counted whether a class has attributes or not.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;AttributeClass Ratio=\frac{Classes With Attributes}{Number Of Classes}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Equivalence Ratio==&lt;br /&gt;
&lt;br /&gt;
This metric calculates the ratio between similar classes and all classes in the ontology.&lt;br /&gt;
&lt;br /&gt;
It is being calculated as follows:&lt;br /&gt;
 &amp;lt;math&amp;gt;Equivalence Ratio =\frac{Same Classes}{Number Of All Classes}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Sources==&lt;br /&gt;
&lt;br /&gt;
#''Samir Tartir, I. Budak Arpinar, Amit P. Sheth: Ontological Evaluation and Validation&amp;lt;br /&amp;gt; In: Theory and Applications of Ontology: Computer Applications 2010, pp 115-130.&amp;lt;br /&amp;gt; http://link.springer.com/chapter/10.1007%2F978-90-481-8847-5_5''&lt;br /&gt;
#''Aldo Gangemi, Carola Catenacci, Massimiliano Ciaramita, Jos Lehmann: &amp;lt;br /&amp;gt;Ontology evaluation and validation - An integrated formal model for the quality diagnostic task&amp;lt;br /&amp;gt; September 2005, pp 19-20.  &amp;lt;br /&amp;gt;http://www.loa.istc.cnr.it/old/Files/OntoEval4OntoDev_Final.pdf&lt;/div&gt;</summary>
		<author><name>Bl137</name></author>	</entry>

	<entry>
		<id>http://ontometrics.informatik.uni-rostock.de:80/wiki/index.php?title=Schema_Metrics&amp;diff=263</id>
		<title>Schema Metrics</title>
		<link rel="alternate" type="text/html" href="http://ontometrics.informatik.uni-rostock.de:80/wiki/index.php?title=Schema_Metrics&amp;diff=263"/>
				<updated>2016-09-07T14:19:48Z</updated>
		
		<summary type="html">&lt;p&gt;Bl137: /* Relationship Richness */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Schema metrics address the design of the ontology. Although we cannot definitely know if the ontology design correctly models the domain knowledge, metrics in this category indicate the richness, width, depth, and inheritance of an ontology schema design. The most significant metrics in this category are described next.&lt;br /&gt;
&lt;br /&gt;
==Attribute Richness==&lt;br /&gt;
The number of attributes (slots) that are defined for each class can indicate both the quality of ontology design and the amount of information pertaining to instance data. In general we assume that the more slots that are defined the more knowledge the ontology conveys.&lt;br /&gt;
&lt;br /&gt;
The '''attribute richness (AR)''' is defined as the average number of attributes (slots) per class. It is computed as the '''number attributes for all classes (att)''' divided by the '''number of classes (C)'''.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;AR = \dfrac{|ATT|}{|C|}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Usually, only the functional attributes are counted to calculate this metric, as stated in the OWL definition. In our metric calculation, we omit this restriction and use all declared attributes to calculate, because not many modellers use the possibility of defining functional attributes. Also, the datatype are being handled as attributes as well.&lt;br /&gt;
&lt;br /&gt;
[[Schema_Metrics#Sources | Source 1]]&lt;br /&gt;
&lt;br /&gt;
==Inheritance Richness==&lt;br /&gt;
&lt;br /&gt;
'''Inheritance Richness (IR)''' measure describes the distribution of information across different levels of the ontology’s inheritance tree or the fan-out of parent classes. This is a good indication of how well knowledge is grouped into different categories and subcategories in the ontology. This measure can distinguish a horizontal ontology (where classes have a large number of direct subclasses) from a vertical ontology (where classes have a small number of direct subclasses). An ontology with a low inheritance richness would be of a deep (or vertical) ontology, which indicates that the ontology covers a specific domain in a detailed manner, while an ontology with a high IR would be a shallow (or horizontal) ontology, which indicates that the ontology represents a wide range of general knowledge with a low level of detail.&lt;br /&gt;
&lt;br /&gt;
The inheritance richness of the schema (IR) is defined as the average number of subclasses per class.&lt;br /&gt;
The number of subclasses of a class is defined as &amp;lt;math&amp;gt; |H^C(C_1,C_i)|&amp;lt;/math&amp;gt;. '''H''' is the '''number of inheritance relationships'''.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;IR = \frac{\sum_{C_i \in C}|H^C(C_1,C_i)|}{|C|}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Schema_Metrics#Sources | Source 1]]&lt;br /&gt;
&lt;br /&gt;
==Relationship Richness==&lt;br /&gt;
&lt;br /&gt;
This metric reflects the diversity of the types of relations in the ontology. An ontology that contains only inheritance relationships usually conveys less information than an ontology that contains a diverse set of relationships. The relationship richness is represented as the percentage of the (non-inheritance) relationships between classes compared to all of the possible connections that can include inheritance and non-inheritance relationships.&lt;br /&gt;
&lt;br /&gt;
The '''relationship richness (RR)''' of a schema is defined as the ratio of the '''number of (non-inheritance) relationships (P)''', divided by the '''total number of relationships''' defined in the schema (the sum of the '''number of inheritance relationships (H)''' and '''non-inheritance relationships (P)''').&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;RR = \frac{|P|}{|H|+|P|}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: The following relationships are being counted as non-inherited relationships:&lt;br /&gt;
&lt;br /&gt;
Object Properties,&lt;br /&gt;
&lt;br /&gt;
Equivalent Classes,&lt;br /&gt;
&lt;br /&gt;
Disjoint Classes,&lt;br /&gt;
&lt;br /&gt;
The subclasses (Subclasses of) are being handled as inheritance relationships.&lt;br /&gt;
&lt;br /&gt;
[[Schema_Metrics#Sources | Source 1]]&lt;br /&gt;
&lt;br /&gt;
==Axiom Class Ratio==&lt;br /&gt;
&lt;br /&gt;
This metric describes the ratio between axioms and classes. It is calculated as the average amount of axioms per class.&lt;br /&gt;
 &amp;lt;math&amp;gt;Axiom class ratio=\frac{Axioms}{Classes}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Schema_Metrics#Sources | Source 2]]&lt;br /&gt;
&lt;br /&gt;
==Inverse Relations Ratio==&lt;br /&gt;
&lt;br /&gt;
This metric describes the ratio between the inverse relations and all relations.&lt;br /&gt;
It is calculated as follows:&lt;br /&gt;
 &amp;lt;math&amp;gt;Inverse Relations Ratio = \frac{Inverse Object Properties + Inverse Functional Data Properties}{All Object Properties + All Functional Data Properties}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Schema_Metrics#Sources | Source 2]]&lt;br /&gt;
&lt;br /&gt;
==Class Relation Ratio==&lt;br /&gt;
&lt;br /&gt;
This metric describes the ratio between the classes and the relations in the ontology.&lt;br /&gt;
 &amp;lt;math&amp;gt;Class Relation Ratio =\frac{Classes}{Relationships}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following ontology components are counted as relationships:&lt;br /&gt;
Object Properties,&lt;br /&gt;
&lt;br /&gt;
Equivalent Classes,&lt;br /&gt;
&lt;br /&gt;
Disjoint Classes,&lt;br /&gt;
&lt;br /&gt;
Class Assertion,&lt;br /&gt;
&lt;br /&gt;
Same individuals,&lt;br /&gt;
&lt;br /&gt;
Different individuals,&lt;br /&gt;
&lt;br /&gt;
Subclasses(Subclass of).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Schema_Metrics#Sources | Source 2]]&lt;br /&gt;
&lt;br /&gt;
==Attribute-Class Ratio==&lt;br /&gt;
&lt;br /&gt;
This metric represents the relation between the classes containing attributes and all classes. The difference to attribute richness is that not the amount of attributes is counted. It is only counted whether a class has attributes or not.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;AttributeClass Ratio=\frac{Classes With Attributes}{Number Of Classes}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Equivalence Ratio==&lt;br /&gt;
&lt;br /&gt;
This metric calculates the ratio between similar classes and all classes in the ontology.&lt;br /&gt;
&lt;br /&gt;
It is being calculated as follows:&lt;br /&gt;
 &amp;lt;math&amp;gt;Equivalence Ratio =\frac{Same Classes}{Number Of All Classes}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Sources==&lt;br /&gt;
&lt;br /&gt;
#''Samir Tartir, I. Budak Arpinar, Amit P. Sheth: Ontological Evaluation and Validation&amp;lt;br /&amp;gt; In: Theory and Applications of Ontology: Computer Applications 2010, pp 115-130.&amp;lt;br /&amp;gt; http://link.springer.com/chapter/10.1007%2F978-90-481-8847-5_5''&lt;br /&gt;
#''Aldo Gangemi, Carola Catenacci, Massimiliano Ciaramita, Jos Lehmann: &amp;lt;br /&amp;gt;Ontology evaluation and validation - An integrated formal model for the quality diagnostic task&amp;lt;br /&amp;gt; September 2005, pp 19-20.  &amp;lt;br /&amp;gt;http://www.loa.istc.cnr.it/old/Files/OntoEval4OntoDev_Final.pdf&lt;/div&gt;</summary>
		<author><name>Bl137</name></author>	</entry>

	<entry>
		<id>http://ontometrics.informatik.uni-rostock.de:80/wiki/index.php?title=Knowledgebase_Metrics&amp;diff=262</id>
		<title>Knowledgebase Metrics</title>
		<link rel="alternate" type="text/html" href="http://ontometrics.informatik.uni-rostock.de:80/wiki/index.php?title=Knowledgebase_Metrics&amp;diff=262"/>
				<updated>2016-09-07T10:35:22Z</updated>
		
		<summary type="html">&lt;p&gt;Bl137: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The way data is placed within an ontology is also a very important measure of ontology quality because it can indicate the effectiveness of the ontology design and the amount of real-world knowledge represented by the ontology. Instance metrics include metrics that describe the knowledgebase as a whole, and metrics that describe the way each schema class is being utilized in the knowledgebase.&lt;br /&gt;
&lt;br /&gt;
==Average Population==&lt;br /&gt;
&lt;br /&gt;
(The average distribution of instances across all classes)&lt;br /&gt;
&lt;br /&gt;
This measure is an indication of the number of instances compared to the number of classes. It can be useful if the ontology developer is not sure if enough instances were extracted compared to the number of classes.&lt;br /&gt;
&lt;br /&gt;
Formally, the '''average population (AP)''' of classes in a knowledgebase is defined as the '''number of instances of the knowledgebase (I)''' divided by the '''number of classes defined in the ontology schema (C)'''.&lt;br /&gt;
 &amp;lt;math&amp;gt;AP=\frac{|I|}{|C|}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The result will be a real number that shows how well is the data extraction process that was performed to populate the knowledgebase. For example, if the average number of instances per class is low, when read in conjunction with the previous metric, this number would indicate that the instances extracted into the knowledgebase might be insufficient to represent all of the knowledge in the schema. Keep in mind that some of the schema classes might have a very low number or a very high number by the nature of what it is representing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Knowledgebase_Metrics#Sources | Source 1]]&lt;br /&gt;
&lt;br /&gt;
==Class Richness==&lt;br /&gt;
&lt;br /&gt;
This metric is related to how instances are distributed across classes. The number of classes that have instances in the knowledgebase is compared with the total number of classes, giving a general idea of how well the knowledgebase utilizes the knowledge modelled by the schema classes. Thus, if the knowledgebase has a very low Class Richness, then the knowledgebase does not have data that exemplifies all the class knowledge that exists in the schema. On the other hand, a knowledgebase that has a very high class richness would indicate that the data in the knowledgebase represents most of the knowledge in the schema.&lt;br /&gt;
&lt;br /&gt;
The '''class richness (CR)''' of a knowledgebase is defined as the percentage of the '''number of non-empty classes (classes with instances) (C')''' divided by the '''total number of classes (C)''' defined in the ontology schema.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;CR= \frac{|C'|}{|C|}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Knowledgebase_Metrics#Sources | Source 1]]&lt;br /&gt;
&lt;br /&gt;
==Cohesion==&lt;br /&gt;
&lt;br /&gt;
The cohesion shows the degree of relatedness between the different entities. When the entities of an ontology are highly related there is a strong cohesion value.&lt;br /&gt;
&lt;br /&gt;
To be able to measure the cohesion three different metrics will be used:&lt;br /&gt;
&lt;br /&gt;
===Number of root classes (NoR)===&lt;br /&gt;
'''Same as Absolute Root Cardinality in Graph Metrics!!!'''&lt;br /&gt;
&lt;br /&gt;
Displays the number of root classes of an ontology, a root class is a class which is not a sub class of any other class in the ontology. &amp;lt;math&amp;gt; C_j&amp;lt;/math&amp;gt; is the jth root class.&lt;br /&gt;
  &amp;lt;math&amp;gt;NoR= \sum C_j &amp;lt;/math&amp;gt; ''for all'' &amp;lt;math&amp;gt;1 \le j \le n&amp;lt;/math&amp;gt;&lt;br /&gt;
===Number of leaf classes (NoL)===&lt;br /&gt;
'''Same as Absolute Leaf Cardinality in Graph Metrics!!!'''&lt;br /&gt;
&lt;br /&gt;
Displays the number of leaf classes of an ontology, a leaf class doesn't have any sub classes. &amp;lt;math&amp;gt; L_j&amp;lt;/math&amp;gt; is the jth leaf class.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;NoL= \sum L_j &amp;lt;/math&amp;gt; ''for all'' &amp;lt;math&amp;gt;1 \le j \le n&amp;lt;/math&amp;gt;&lt;br /&gt;
===Average depth of inheritance tree of leaf nodes (ADIT-LN)===&lt;br /&gt;
'''Same as Average Depth in Graph Metrics!!!'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
It is the sum of the depth of all paths divided by the total number of paths (n). The total number of paths is the number of paths from each root node to each leaf node. while the depth is the total number of nodes starting with the root node, ending with the leaf node of one path. &amp;lt;math&amp;gt; D_j&amp;lt;/math&amp;gt; is the total number of nodes on the path j.&lt;br /&gt;
 &amp;lt;math&amp;gt;ADIT-LN= \frac{\sum D_j} {n} &amp;lt;/math&amp;gt; ''for all'' &amp;lt;math&amp;gt; D_j &amp;lt;/math&amp;gt; ''for'' &amp;lt;math&amp;gt; 1 \le j \le n&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Knowledgebase_Metrics#Sources | Source 2]]&lt;br /&gt;
&lt;br /&gt;
==Sources==&lt;br /&gt;
#''Samir Tartir, I. Budak Arpinar, Michael Moore, Amit P. Sheth, and Boanerges Aleman-meza:&amp;lt;br /&amp;gt;Ontoqa: Metric-based ontology quality analysis.&amp;lt;br /&amp;gt;In: IEEE Workshop on Knowledge Acquisition from Distributed, Autonomous, Semantically Heterogeneous Data and Knowledge Sources, 2005, p 4.&amp;lt;br /&amp;gt;http://cobweb.cs.uga.edu/~budak/papers/ontoqa.pdf&lt;br /&gt;
#''Aldo Gangemi, Carola Catenacci, Massimiliano Ciaramita, Jos Lehmann:&amp;lt;br /&amp;gt; Ontology evaluation and validation - An integrated formal model for the quality diagnostic task&amp;lt;br /&amp;gt; September 2005 , pp 44-45. &amp;lt;br /&amp;gt;http://www.loa.istc.cnr.it/old/Files/OntoEval4OntoDev_Final.pdf''&lt;/div&gt;</summary>
		<author><name>Bl137</name></author>	</entry>

	<entry>
		<id>http://ontometrics.informatik.uni-rostock.de:80/wiki/index.php?title=Knowledgebase_Metrics&amp;diff=261</id>
		<title>Knowledgebase Metrics</title>
		<link rel="alternate" type="text/html" href="http://ontometrics.informatik.uni-rostock.de:80/wiki/index.php?title=Knowledgebase_Metrics&amp;diff=261"/>
				<updated>2016-09-07T10:33:20Z</updated>
		
		<summary type="html">&lt;p&gt;Bl137: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The way data is placed within an ontology is also a very important measure of ontology quality because it can indicate the effectiveness of the ontology design and the amount of real-world knowledge represented by the ontology. Instance metrics include metrics that describe the knowledgebase as a whole, and metrics that describe the way each schema class is being utilized in the knowledgebase.&lt;br /&gt;
&lt;br /&gt;
==Average Population==&lt;br /&gt;
&lt;br /&gt;
(The average distribution of instances across all classes)&lt;br /&gt;
&lt;br /&gt;
This measure is an indication of the number of instances compared to the number of classes. It can be useful if the ontology developer is not sure if enough instances were extracted compared to the number of classes.&lt;br /&gt;
&lt;br /&gt;
Formally, the '''average population (AP)''' of classes in a knowledgebase is defined as the '''number of instances of the knowledgebase (I)''' divided by the '''number of classes defined in the ontology schema (C)'''.&lt;br /&gt;
 &amp;lt;math&amp;gt;AP=\frac{|I|}{|C|}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The result will be a real number that shows how well is the data extraction process that was performed to populate the knowledgebase. For example, if the average number of instances per class is low, when read in conjunction with the previous metric, this number would indicate that the instances extracted into the knowledgebase might be insufficient to represent all of the knowledge in the schema. Keep in mind that some of the schema classes might have a very low number or a very high number by the nature of what it is representing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Knowledgebase_Metrics#Sources | Source 1]]&lt;br /&gt;
&lt;br /&gt;
==Class Richness==&lt;br /&gt;
&lt;br /&gt;
This metric is related to how instances are distributed across classes. The number of classes that have instances in the knowledgebase is compared with the total number of classes, giving a general idea of how well the knowledgebase utilizes the knowledge modelled by the schema classes. Thus, if the knowledgebase has a very low Class Richness, then the knowledgebase does not have data that exemplifies all the class knowledge that exists in the schema. On the other hand, a knowledgebase that has a very high class richness would indicate that the data in the knowledgebase represents most of the knowledge in the schema.&lt;br /&gt;
&lt;br /&gt;
The '''class richness (CR)''' of a knowledgebase is defined as the percentage of the '''number of non-empty classes (classes with instances) (C')''' divided by the '''total number of classes (C)''' defined in the ontology schema.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;CR= \frac{|C'|}{|C|}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Knowledgebase_Metrics#Sources | Source 1]]&lt;br /&gt;
&lt;br /&gt;
==Cohesion==&lt;br /&gt;
&lt;br /&gt;
The cohesion shows the degree of relatedness between the different entities. When the entities of an ontology are highly related there is a strong cohesion value.&lt;br /&gt;
&lt;br /&gt;
To be able to measure the cohesion three different metrics will be used:&lt;br /&gt;
&lt;br /&gt;
===Number of root classes (NoR)===&lt;br /&gt;
'''Same as Absolute Root Cardinality in Graph Metrics!!!'''&lt;br /&gt;
&lt;br /&gt;
Displays the number of root classes of an ontology, a root class is a class which is not a sub class of any other class in the ontology. &amp;lt;math&amp;gt; C_j&amp;lt;/math&amp;gt; is the jth root class.&lt;br /&gt;
  &amp;lt;math&amp;gt;NoR= \sum C_j &amp;lt;/math&amp;gt; ''for all'' &amp;lt;math&amp;gt;1 \le j \le n&amp;lt;/math&amp;gt;&lt;br /&gt;
===Number of leaf classes (NoL)===&lt;br /&gt;
'''Same as Absolute Leaf Cardinality in Graph Metrics!!!'''&lt;br /&gt;
&lt;br /&gt;
Displays the number of leaf classes of an ontology, a leaf class doesn't have any sub classes. &amp;lt;math&amp;gt; L_j&amp;lt;/math&amp;gt; is the jth leaf class.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;NoL= \sum L_j &amp;lt;/math&amp;gt; ''for all'' &amp;lt;math&amp;gt;1 \le j \le n&amp;lt;/math&amp;gt;&lt;br /&gt;
===Average depth of inheritance tree of leaf nodes (ADIT-LN)===&lt;br /&gt;
&lt;br /&gt;
It is the sum of the depth of all paths divided by the total number of paths (n). The total number of paths is the number of paths from each root node to each leaf node. while the depth is the total number of nodes starting with the root node, ending with the leaf node of one path. &amp;lt;math&amp;gt; D_j&amp;lt;/math&amp;gt; is the total number of nodes on the path j.&lt;br /&gt;
 &amp;lt;math&amp;gt;ADIT-LN= \frac{\sum D_j} {n} &amp;lt;/math&amp;gt; ''for all'' &amp;lt;math&amp;gt; D_j &amp;lt;/math&amp;gt; ''for'' &amp;lt;math&amp;gt; 1 \le j \le n&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Knowledgebase_Metrics#Sources | Source 2]]&lt;br /&gt;
&lt;br /&gt;
==Sources==&lt;br /&gt;
#''Samir Tartir, I. Budak Arpinar, Michael Moore, Amit P. Sheth, and Boanerges Aleman-meza:&amp;lt;br /&amp;gt;Ontoqa: Metric-based ontology quality analysis.&amp;lt;br /&amp;gt;In: IEEE Workshop on Knowledge Acquisition from Distributed, Autonomous, Semantically Heterogeneous Data and Knowledge Sources, 2005, p 4.&amp;lt;br /&amp;gt;http://cobweb.cs.uga.edu/~budak/papers/ontoqa.pdf&lt;br /&gt;
#''Aldo Gangemi, Carola Catenacci, Massimiliano Ciaramita, Jos Lehmann:&amp;lt;br /&amp;gt; Ontology evaluation and validation - An integrated formal model for the quality diagnostic task&amp;lt;br /&amp;gt; September 2005 , pp 44-45. &amp;lt;br /&amp;gt;http://www.loa.istc.cnr.it/old/Files/OntoEval4OntoDev_Final.pdf''&lt;/div&gt;</summary>
		<author><name>Bl137</name></author>	</entry>

	<entry>
		<id>http://ontometrics.informatik.uni-rostock.de:80/wiki/index.php?title=Knowledgebase_Metrics&amp;diff=260</id>
		<title>Knowledgebase Metrics</title>
		<link rel="alternate" type="text/html" href="http://ontometrics.informatik.uni-rostock.de:80/wiki/index.php?title=Knowledgebase_Metrics&amp;diff=260"/>
				<updated>2016-09-07T10:24:36Z</updated>
		
		<summary type="html">&lt;p&gt;Bl137: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The way data is placed within an ontology is also a very important measure of ontology quality because it can indicate the effectiveness of the ontology design and the amount of real-world knowledge represented by the ontology. Instance metrics include metrics that describe the knowledgebase as a whole, and metrics that describe the way each schema class is being utilized in the knowledgebase.&lt;br /&gt;
&lt;br /&gt;
==Average Population==&lt;br /&gt;
&lt;br /&gt;
(The average distribution of instances across all classes)&lt;br /&gt;
&lt;br /&gt;
This measure is an indication of the number of instances compared to the number of classes. It can be useful if the ontology developer is not sure if enough instances were extracted compared to the number of classes.&lt;br /&gt;
&lt;br /&gt;
Formally, the '''average population (AP)''' of classes in a knowledgebase is defined as the '''number of instances of the knowledgebase (I)''' divided by the '''number of classes defined in the ontology schema (C)'''.&lt;br /&gt;
 &amp;lt;math&amp;gt;AP=\frac{|I|}{|C|}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The result will be a real number that shows how well is the data extraction process that was performed to populate the knowledgebase. For example, if the average number of instances per class is low, when read in conjunction with the previous metric, this number would indicate that the instances extracted into the knowledgebase might be insufficient to represent all of the knowledge in the schema. Keep in mind that some of the schema classes might have a very low number or a very high number by the nature of what it is representing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Knowledgebase_Metrics#Sources | Source 1]]&lt;br /&gt;
&lt;br /&gt;
==Class Richness==&lt;br /&gt;
&lt;br /&gt;
This metric is related to how instances are distributed across classes. The number of classes that have instances in the knowledgebase is compared with the total number of classes, giving a general idea of how well the knowledgebase utilizes the knowledge modelled by the schema classes. Thus, if the knowledgebase has a very low Class Richness, then the knowledgebase does not have data that exemplifies all the class knowledge that exists in the schema. On the other hand, a knowledgebase that has a very high class richness would indicate that the data in the knowledgebase represents most of the knowledge in the schema.&lt;br /&gt;
&lt;br /&gt;
The '''class richness (CR)''' of a knowledgebase is defined as the percentage of the '''number of non-empty classes (classes with instances) (C')''' divided by the '''total number of classes (C)''' defined in the ontology schema.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;CR= \frac{|C'|}{|C|}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Knowledgebase_Metrics#Sources | Source 1]]&lt;br /&gt;
&lt;br /&gt;
==Cohesion==&lt;br /&gt;
&lt;br /&gt;
The cohesion shows the degree of relatedness between the different entities. When the entities of an ontology are highly related there is a strong cohesion value.&lt;br /&gt;
&lt;br /&gt;
To be able to measure the cohesion three different metrics will be used:&lt;br /&gt;
&lt;br /&gt;
===Number of root classes (NoR)===&lt;br /&gt;
'''Same as Number of Roots in Graph Metrics!!!'''&lt;br /&gt;
Displays the number of root classes of an ontology, a root class is a class which is not a sub class of any other class in the ontology. &amp;lt;math&amp;gt; C_j&amp;lt;/math&amp;gt; is the jth root class.&lt;br /&gt;
  &amp;lt;math&amp;gt;NoR= \sum C_j &amp;lt;/math&amp;gt; ''for all'' &amp;lt;math&amp;gt;1 \le j \le n&amp;lt;/math&amp;gt;&lt;br /&gt;
===Number of leaf classes (NoL)===&lt;br /&gt;
Displays the number of leaf classes of an ontology, a leaf class doesn't have any sub classes. &amp;lt;math&amp;gt; L_j&amp;lt;/math&amp;gt; is the jth leaf class.&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;NoL= \sum L_j &amp;lt;/math&amp;gt; ''for all'' &amp;lt;math&amp;gt;1 \le j \le n&amp;lt;/math&amp;gt;&lt;br /&gt;
===Average depth of inheritance tree of leaf nodes (ADIT-LN)===&lt;br /&gt;
&lt;br /&gt;
It is the sum of the depth of all paths divided by the total number of paths (n). The total number of paths is the number of paths from each root node to each leaf node. while the depth is the total number of nodes starting with the root node, ending with the leaf node of one path. &amp;lt;math&amp;gt; D_j&amp;lt;/math&amp;gt; is the total number of nodes on the path j.&lt;br /&gt;
 &amp;lt;math&amp;gt;ADIT-LN= \frac{\sum D_j} {n} &amp;lt;/math&amp;gt; ''for all'' &amp;lt;math&amp;gt; D_j &amp;lt;/math&amp;gt; ''for'' &amp;lt;math&amp;gt; 1 \le j \le n&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Knowledgebase_Metrics#Sources | Source 2]]&lt;br /&gt;
&lt;br /&gt;
==Sources==&lt;br /&gt;
#''Samir Tartir, I. Budak Arpinar, Michael Moore, Amit P. Sheth, and Boanerges Aleman-meza:&amp;lt;br /&amp;gt;Ontoqa: Metric-based ontology quality analysis.&amp;lt;br /&amp;gt;In: IEEE Workshop on Knowledge Acquisition from Distributed, Autonomous, Semantically Heterogeneous Data and Knowledge Sources, 2005, p 4.&amp;lt;br /&amp;gt;http://cobweb.cs.uga.edu/~budak/papers/ontoqa.pdf&lt;br /&gt;
#''Aldo Gangemi, Carola Catenacci, Massimiliano Ciaramita, Jos Lehmann:&amp;lt;br /&amp;gt; Ontology evaluation and validation - An integrated formal model for the quality diagnostic task&amp;lt;br /&amp;gt; September 2005 , pp 44-45. &amp;lt;br /&amp;gt;http://www.loa.istc.cnr.it/old/Files/OntoEval4OntoDev_Final.pdf''&lt;/div&gt;</summary>
		<author><name>Bl137</name></author>	</entry>

	</feed>