Showing posts with label education. Show all posts
Showing posts with label education. Show all posts

Thursday, March 6, 2014

Dataset: State of Nigerian Universities 2012

Description State of Nigerian Universities 2012 .

         

Country: Nigeria

RDF/XML.

Keywords: linkedopendatang, linkedopendata, opendatanigeria, opendatang, opendata, linkeddata, graduate, school, dataset, nigeria, universities, education, naija30, africa30, undergraduate

Information: About the Linked Data document.

Predicates/Properties [via URIBurner Endpoint], [via SPARQLer Endpoint]

Linked Data Follow Your Nose (hosted on rww.io)

Sample Visualization: Pie Chart on the Population of Nigerian Undergraduates by their Courses

Sample SPARQL Queries:

  Emeka Okoye

State of Nigerian Universities 2012.

Tuesday, March 4, 2014

Dataset: Nigerian Government Budgets for Education

Description Nigeria Government Budgets For Education .

Country: Nigeria

RDF/XML.

Keywords: linkedopendatang, linkedopendata, opendatanigeria, opendatang, opendata, linkeddata, dataset, nigeria, budget, examination, naija30, africa30, education

Information: About the Linked Data document.

Predicates/Properties [via URIBurner Endpoint], [via SPARQLer Endpoint]

Linked Data Follow Your Nose (hosted on rww.io)

Sample Visualization:

Sample SPARQL Queries:

 The top Education Budgets in recent time based on percentage of allocation to Education [via URIBurner Endpoint], [via SPARQLer Endpoint] .

prefix odng: <http://www.vikanttimobile.com/opendatang/data/odng-education-budget.ttl#> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>

select str(?year) as ?Year, str(?alloc) as ?Education, str(?budget) as ?TotalBudget, str(?percent) as ?Percent from <http://www.vikanttimobile.com/opendatang/data/odng-education-budget.ttl> where { ?s odng:year ?year . ?s odng:educationAllocation ?alloc. ?s odng:totalBudget ?budget. optional { ?s odng:percentage ?percent. } } order by desc(xsd:double(?percent))

Edit the above query

  Emeka Okoye

Nigeria Government Budgets For Education.

Dataset: West African Examination Council (WAEC) Examination Results

Description Results of the West African Examination Council Examination in Nigeria .

Country: Nigeria

RDF/XML, CSV.

Keywords: linkedopendatang, linkedopendata, opendatanigeria, opendatang, opendata, linkeddata, dataset, nigeria, waec, examination, naija30, africa30, education

Information: About the Linked Data document.

Predicates/Properties [via URIBurner Endpoint], [via SPARQLer Endpoint]

Linked Data Follow Your Nose (hosted on rww.io)

Sample Visualization:

Sample SPARQL Queries:

 The top 5 WAEC Examinations with the best performance in 5 subjects including English and Maths [via URIBurner Endpoint], [via SPARQLer Endpoint] .

prefix odng: <http://www.vikanttimobile.com/opendatang/data/odng-education-waec-results.ttl#> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>

select  ?examName as ?Examination, str(?totalCandidates) as ?TotalCandidates, str(?scored5creditsengmaths) as ?Scored5CreditsEngMaths, str(?pctScored5creditsengmaths) as ?PercentScored5creditsEngMaths from <http://www.vikanttimobile.com/opendatang/data/odng-education-waec-results.ttl> where { ?s rdfs:label ?examName. ?s odng:totalCandidates  ?totalCandidates . ?s odng:have5CreditsWithEnglishMaths  ?scored5creditsengmaths . ?s odng:pct5CreditsEnglishMaths ?pctScored5creditsengmaths . optional {?s odng:have6Credits ?scored6credits .} optional {?s odng:have5Credits ?scored5credits .} optional {?s odng:have4Credits ?scored4credits .} optional {?s odng:have3Credits ?scored3credits .} optional {?s odng:have2Credits ?scored2credits .}

} order by desc(xsd:integer(?pctScored5creditsengmaths)) limit 5

Edit the above query

 The top 5 WAEC Examinations with the worst performance in 5 subjects including English and Maths [via URIBurner Endpoint], [via SPARQLer Endpoint] .

prefix odng: <http://www.vikanttimobile.com/opendatang/data/odng-education-waec-results.ttl#> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>

select  ?examName as ?Examination, str(?totalCandidates) as ?TotalCandidates, str(?scored5creditsengmaths) as ?Scored5CreditsEngMaths, str(?pctScored5creditsengmaths) as ?PercentScored5creditsEngMaths from <http://www.vikanttimobile.com/opendatang/data/odng-education-waec-results.ttl> where { ?s rdfs:label ?examName. ?s odng:totalCandidates  ?totalCandidates . ?s odng:have5CreditsWithEnglishMaths  ?scored5creditsengmaths . ?s odng:pct5CreditsEnglishMaths ?pctScored5creditsengmaths . optional {?s odng:have6Credits ?scored6credits .} optional {?s odng:have5Credits ?scored5credits .} optional {?s odng:have4Credits ?scored4credits .} optional {?s odng:have3Credits ?scored3credits .} optional {?s odng:have2Credits ?scored2credits .}

} order by asc(xsd:integer(?pctScored5creditsengmaths)) limit 5

Edit the above query

  Emeka Okoye

Results of the West African Examination Council Examination in Nigeria.

Dataset: Joint Admission Matriculation Board (JAMB) Examination Results

Description Results of the Joint Admission Matriculation Board Examinations in Nigeria .

Country: Nigeria

RDF/XML, CSV.

Keywords: opendatanigeria, opendatang, opendata, linkeddata, dataset, nigeria, jamb, examination, naija30, africa30, education

Information: About the Linked Data document.

Predicates/Properties [via URIBurner Endpoint], [via SPARQLer Endpoint]

Linked Data Follow Your Nose (hosted on rww.io)

Sample Visualization:

Sample SPARQL Queries:

 The best 5 performances in JAMB Exams based on the number of candidates that scored more than 50% [via URIBurner Endpoint], [via SPARQLer Endpoint] .

prefix odng: <http://www.vikanttimobile.com/opendatang/data/odng-education-jexams-results.ttl#> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>

select ?description, ?year, str(?totalCandidate) as ?totalCandidates , str(?scoredAbove200) as ?scoredMoreThan200 , xsd:double(?scoredAbove200) / xsd:double(?totalCandidate) * 100 as ?percent from <http://www.vikanttimobile.com/opendatang/data/odng-education-jexams-results.ttl> where { ?s odng:examOrganization ?exambody . ?s rdfs:label ?description . ?s odng:year ?year . ?s odng:totalAbove200 ?scoredAbove200 . optional {?s odng:totalCandidate ?totalCandidate .} optional {?s odng:above300 ?scoredAbove300 .} optional {?s odng:between270to299 ?scoredAbove270 .} optional {?s odng:between200to249 ?scoredAbove200 .} optional {?s odng:below170 ?scoredBelow170 .} optional {?s odng:between250to270 ?scoredAbove250 .} optional {?s odng:totalBelow200 ?scoredBelow200 .} } order by desc(xsd:integer(?percent ))

Edit the above query

 The top JAMB Examinations that had candidates that scored more than 300 points [via URIBurner Endpoint], [via SPARQLer Endpoint].

prefix odng: <http://www.vikanttimobile.com/opendatang/data/odng-education-jexams-results.ttl#> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>

select ?description, ?year, str(?totalCandidate) as ?totalCandidates , str(?scoredAbove300) as ?scoredAbove300 from <http://www.vikanttimobile.com/opendatang/data/odng-education-jexams-results.ttl> where { ?s odng:examOrganization ?exambody . ?s rdfs:label ?description . ?s odng:year ?year . ?s odng:above300 ?scoredAbove300 . optional {?s odng:totalCandidate ?totalCandidate .} optional {?s odng:above300 ?scoredAbove300 .} optional {?s odng:between270to299 ?scoredAbove270 .} optional {?s odng:between200to249 ?scoredAbove200 .} optional {?s odng:below170 ?scoredBelow170 .} optional {?s odng:between250to270 ?scoredAbove250 .} optional {?s odng:totalBelow200 ?scoredBelow200 .} } order by desc(xsd:integer(?scoredAbove300 ))

Edit the above query

  Emeka Okoye

Results of the Joint Admission Matriculation Board Examinations in Nigeria.