Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/szarnyasg/ida
Intelligens Data Analysis homework
https://github.com/szarnyasg/ida
Last synced: 24 days ago
JSON representation
Intelligens Data Analysis homework
- Host: GitHub
- URL: https://github.com/szarnyasg/ida
- Owner: szarnyasg
- Created: 2015-11-27T18:09:47.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-11T07:00:36.000Z (about 9 years ago)
- Last Synced: 2024-11-25T05:45:24.888Z (about 2 months ago)
- Language: R
- Size: 2.14 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ida
Intelligens Data Analysis homework
[![Build Status](https://travis-ci.org/szarnyasg/ida.svg)](https://travis-ci.org/szarnyasg/ida)
## Tools
### Corese
### Stardog database
Install the Stardog database and [disable the authentication](http://docs.stardog.com/man/server-start.html) with `--disable-security`:
```bash
$ ./stardog-admin server start --disable-security
```### R
Install R 3.2+:
```bash
$ sudo apt-get install -y r-base r-base-dev
```To use the `SPARQL` package, you need some additional dependencies:
```bash
$ sudo apt-get install -y libxml2-dev libcurl4-gnutls-dev
$ R
> install.packages("SPARQL")
```