| create_database {sejmRP} | R Documentation |
Creating database
Description
Function create_database creates a database with four empty
tables: deputies, votings, votes, statements.
Usage
create_database(dbname, user, password, host)
Arguments
dbname |
name of database |
user |
name of user |
password |
password of database |
host |
name of host |
Details
Created tables:
1. deputies with columns:
1) id_deputy - deputy's id,
2) nr_term_of_office - Polish Diet's number of term of office,
3) surname_name - deputy's names and surnames,
2. votings with columns:
1) id_voting - voting's id,
2) nr_term_of_office - Polish Diet's number of term of office,
3) nr_meeting - meeting's number,
4) date_meeting - meeting's date,
5) nr_voting - voting's number,
6) topic_voting - voting's topic,
7) link_results - link with voting's results,
3. votes with columns:
1) id_vote - vote's id,
2) nr_term_of_office - Polish Diet's number of term of office,
3) id_deputy - deputy's id,
4) id_voting - voting's id,
5) vote - deputy's vote, one of: 'Za','Przeciw',
'Wstrzymal sie','Nieobecny',
6) club - deputy's club,
4. statements with columns:
1) id_statement - statement's id, like:
(meeting's number).(voting's number).(statement's number),
2) nr_term_of_office - Polish Diet's number of term of office,
3) surname_name - author of statement,
4) date_statement - statement's date,
5) titles_order_points - title of order points,
6) statement - content of statement.
Value
invisible NULL
Note
All information is stored in PostgreSQL database.
Author(s)
Piotr Smuda
Examples
## Not run:
create_database(dbname, user, password, host)
## End(Not run)
[Package sejmRP version 1.3.4 Index]