Set of visualization to analyze Brazil's labour accident data.

Mateus Rodrigues 874995ed01 dendrogram: Add tooltips on radarcharts and use each locality domain for radarchart scales 6 vuotta sitten
app 874995ed01 dendrogram: Add tooltips on radarcharts and use each locality domain for radarchart scales 6 vuotta sitten
docs f00872e41b Add small note on how to use the summary script 6 vuotta sitten
scripts c7e430ac2d scripts/generate-rdata: Change code logic in the data. It is way faster now 6 vuotta sitten
.gitignore eff394eafa Ignore R object format '.rds' 6 vuotta sitten
README.org ee0cdcd5d5 Add a bit of explanation to the coding style 6 vuotta sitten

README.org

Repositório de códigos do aplicativo do MPT

Coding Style

R

Javascript (D3 integration)

  • File names end in ".R"
  • Maximum line length is 80 columns
  • Function names are camelCase
  • Variables names are separated by " " like_this
  • Put spaces around binary operators, but not parenthesis. e.g: (3 + 4)
  • Use space after commas. e.g: func(arg1, arg2)
  • Indentation is 4 spaces, no tabs.
  • Opening braces go at end of line, closing go on a line by itself.
  • Above instructions(for R) also apply here
  • Every visualization go in a different ".js" file
  • Use different, representative, variable names for each visualization.
  • Each graph goes in an specific div, named like "var_name_area".
  • Each "js" file has a different customMessageHandler type, named like "var_name_values".