Jessica B. Hamrick
Jessica B. Hamrick
You can index by row label in a `DataFrame` using `ix` or `xs` -- e.g. `df.ix['row_name']` or `df.xs('row_name')`. It would be nice to have a similar functionality in `Table` so...
From @takluyver: > Travis tests on Python 3 are really sloooow, because the numpy in the Ubuntu repositories is incompatible with the requirements spec, so it has to compile numpy...
If `select` returns a DataFrame, then corresponding methods like `insert` should be able to accept a DataFrame, too.
This reenables mypy, and fixes various type errors that have accumulated. Closes #1328 and closes #1332
In certain cases, it is useful to know when the last time something was modified in the gradebook. For example, in order to determine whether feedback should be regenerated (see...
There is already documentation on how to use nbgrader with [multiple graders with JupyterHub](http://nbgrader.readthedocs.io/en/master/configuration/jupyterhub_config.html#example-use-case-one-class-multiple-graders), but not when *not* using JupyterHub. Briefly, the answer is that you still need access to...
In #841 @dkirkby asked (see https://github.com/jupyter/nbgrader/issues/841#issuecomment-358833466 ): > A new install currently displays this prominent warning on the Formgrader page, which is a bit disconcerting: > > The exchange directory...
We were running these tests on the conda forge recipe but it would be better to have them run on the main nbgrader repo so we don't strain the conda...
The idea behind this command would be to collect example submissions into a directory created by `nbgrader quickstart`. This would be so instructors could see what an example submission might...