Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 339 Bytes

README.md

File metadata and controls

11 lines (9 loc) · 339 Bytes

notaR-r

An R package to be used with notaR - https://github.com/lageIBUSP/notaR

Installation

To use notaR with a database backend, you first need to create the MySQL/MariaDB database, with commands such as:

CREATE DATABASE notaR;
CREATE USER notaR@localhost IDENTIFIED BY 'notaR';
GRANT ALL ON notaR.* to notaR@localhost;