Code Monkey home page Code Monkey logo

netmathtools2's Introduction

netmathtools2

Build Status

Installation:

Windows 7/8/10 only.

devtools::install_github("McClellandLegge/netmathtools2")

Additionally:

  • Must have Python 3.6.* installed and added to the path
    • Suggest installing to C:/Python36 instead of the default
  • Must have downloaded and installed the pywin32 python module
    • The endianness of this installer must match that of the Python 3.6 install

Example Workflow:

Must log into Nexus with Chrome! The package automatically uses these cookies.

library("data.table")

my_netid     <- "mkemp6"

# retrieve cookies from Chrome, decrpyt and compose a `curl` handle
handle       <- netmathtools2::composeNexusHandle(my_netid)

# retrieve my student list and any static information about the students
students     <- netmathtools2::getStudents(handle, my_netid)

# retrieve grade and schedule information, calculate the progress in the course
# NOTE: handle may have timed out at this point, so just compose a new one if so:
#   handle <- netmathtools2::composeNexusHandle(my_netid)
student_prog <- netmathtools2::getStudentsProgress(handle, students)

# customize the columns I'd like to see
customized_student_prog <- student_prog[, .(
  full
  , end_days
  , orientation_date
  , timeline
  , has_proctor
  , days_last_mentor_email
  , days_last_student_email
  , days_behind
  , tryits_behind
  , lessons_behind
  , current_pace_interp
  , needed_pace_interp
  , completed_assignments
  , exams
  )]

# run a shiny app displaying an interactive DataTableJS
netmathtools2::chartProgress(customized_student_prog)

example view of student progress table

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.