-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.Rmd
46 lines (32 loc) · 1.63 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# rSPARQLanything
<!-- badges: start -->
[![CRAN status](https://www.r-pkg.org/badges/version/rSPARQLanything)](https://CRAN.R-project.org/package=rSPARQLanything)
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
<!-- badges: end -->
The goal of rSPARQLanything is to provide an interface to SPARQL Anything,
a system for Semantic Web re-engineering that allows users to query anything with SPARQL. It uses a single generic abstraction for all data source formats called Facade-X. This meta-model used by SPARQL Anything transformers to generate RDF data (a widely used data representation model that forms the cornerstone of the Semantic Web) from diverse data sources. Intuitively, Facade-X uses a subset of RDF as a general approach to represent the source content as-it-is but in RDF. The package interface takes inspiration from the Python 'pysparql-anything' library.
> The development work has not started yet. This repository initialises an
empty R package with documentation templates.
## Installation
You can install the development version of rSPARQLanything like so:
``` r
# FILL THIS IN! HOW CAN PEOPLE INSTALL YOUR DEV PACKAGE?
```
## Example
This is a basic example which shows you how to solve a common problem:
```{r example}
library(rSPARQLanything)
## basic example code
```