How to export data from ontology to an excel sheet using Protege. For example, I want to get a table with 2 columns: Class rdf:ID, Super Class rdf:ID.
            Asked
            
        
        
            Active
            
        
            Viewed 3,078 times
        
    2
            
            
        - 
                    There was some export as CSV functionality in earlier versions of Protege, but I don't think that it still does exist (http://protegewiki.stanford.edu/wiki/Queries_and_Export_Tab). But maybe I'm wrong. I'd suggest Jena + SPARQL as an alternative. – UninformedUser Jun 19 '16 at 11:30
 
1 Answers
2
            solved!.. From the tap SPARQL Query type the query:
SELECT ?subject ?object
    WHERE { ?subject rdfs:subClassOf ?object }
then execute and copy the result directly into an excel sheet :)
        SarahM.
        
- 61
 - 1
 - 7
 
- 
                    1In case you want to exclude `owl:depricated "true"`, you can do that with a filter. – Ivo Velitchkov Jun 19 '16 at 13:19