The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
The package logib
is an R
implementation of
the Swiss Confederation’s salary analysis tool for assessing equal pay
practices (https://www.logib.admin.ch)
In order to install the package from GitHub, use the
devtools
package:
install.packages("devtools")
::install_github("JLDC/logib") devtools
In order to install the latest release from CRAN, use:
install.packages("logib")
library(logib)
# ------------------------------------------------------------------------------
# Variant 1: Using an official datalist or exportfile
# Indicate path to the pre-filled datalist or exportfile
# (see 'Further Resources' below)
<- "path/to/my/datalist_or_exportfile.xlsx"
path_to_my_data # Read the data from an official datalist to R
<- read_data(data_path = path_to_my_data)
my_data
# ------------------------------------------------------------------------------
# Variant 2: Using a pre-loaded dataframe called 'my_dataframe'
# Read the data from the pre-loaded dataframe
<- read_data(custom_data = my_dataframe)
my_data
# ==============================================================================
# Run the analysis and store the results
<- analysis(data = my_data, reference_month = 8, reference_year = 2020)
results # Display the results of the analysis
summary(results)
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.