R package for analyzing and visualizing data from Microsoft Workplace Analytics
Перейти к файлу
Martin Chan c176917fd9 chore: remove .html from .gitignore 2020-11-19 16:25:35 +00:00
.github docs: update Analyst Guide 2020-11-19 14:22:01 +00:00
R fix: pkgdown fixes 2020-11-19 15:44:30 +00:00
data init: first commit 2020-10-26 21:21:24 +00:00
inst chore: remove .html from .gitignore 2020-11-19 16:25:35 +00:00
man fix: pkgdown fixes 2020-11-19 15:44:30 +00:00
vignettes feat: add best practices article 2020-11-19 14:11:08 +00:00
.Rbuildignore fix: pkgdown fixes 2020-11-19 15:44:30 +00:00
.gitignore chore: remove .html from .gitignore 2020-11-19 16:25:35 +00:00
CONTRIBUTING.md init: first commit 2020-10-26 21:21:24 +00:00
DESCRIPTION docs: correct error in DESCRIPTION 2020-11-18 13:59:53 +00:00
LICENSE init: first commit 2020-10-26 21:21:24 +00:00
LICENSE.txt init: first commit 2020-10-26 21:21:24 +00:00
NAMESPACE chore: add alias for collab_ functions 2020-11-19 13:44:33 +00:00
NEWS.md docs: add NEWS.md 2020-11-16 15:04:00 +00:00
README.md docs: restructure README 2020-11-19 14:11:23 +00:00
_pkgdown.yml fix: pkgdown fixes 2020-11-19 15:44:30 +00:00
wpa.Rproj init: first commit 2020-10-26 21:21:24 +00:00

README.md

wpa

R build status CodeFactor License: MIT lifecycle

Analyze and Visualize Workplace Analytics data

This is an R package for analyzing and visualizing data from Microsoft Workplace Analytics.

With the wpa package, you can...

  1. Run prebuilt analysis and visualizations off Workplace Analytics data with settings for HR variables, privacy threshold, etc.
  2. Generate prebuilt interactive HTML reports, which cover specific areas e.g. collaboration, connectivity
  3. Leverage advanced analytics functions, such as text mining and hierarchical clustering, which are built for Workplace Analytics metrics
  4. Integrate analysis of Workplace Analytics data with your R workflow seamlessly

Here are just some examples of the plots that you can create with wpa:


🚀 Quick start guide - For users

Installing the package

You can install the GitHub version of wpa with the following in R:

# Check if devtools is installed, if not then install it
if(!"devtools" %in% installed.packages()){
  install.packages("devtools")
}
devtools::install_git(url = "https://github.com/microsoft/wpa.git")

Note that wpa is not yet released on CRAN, and therefore install.packages() will not work.

Examples

The package comes shipped with a sample Standard Query dataset (sq_data), so you can start exploring functions without having to read in any data. Most functions in wpa share a consistent API, and enable you to return results for both a plot or a table (data frame):

collaboration_sum(sq_data, return = "plot")

By passing 'table' to the return argument, the function will return a data frame with the relevant summary statistics.

The following illustrates the basic API of standard analysis functions:


📦 Package Structure

For information on the package structure, please see the relevant section in our Analyst Guide.

Also check out our package cheat sheet for more information:


Vignette

You can browse the vignette by running the following in R:

vignette(topic = "intro-to-wpa", package = "wpa")

🔨 Developers

We welcome contributions to the package!

Contributing code

If you would like contribute code to the repo, please read our Contributor Guide and Developer Guide. This documentation should provide you all the information you will need to get started.

Issues or Feature Requests

If you would like to log an issue or submit a feature request, please create a new issue or comment on an existing issue on GitHub Issues on this repo.

Reporting Security Issues

Please do not report security vulnerabilities through public GitHub issues. Please read our Security document for more details.

Changelog

See NEWS.md for the package changelog.


Code of Conduct

We would ask you to please read the Microsoft Open Source Code of Conduct prior to engaging with this package.

Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.