Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

see "creation date" and "last update" in Jupyter notebook

I wonder if there is a way to add a column "creation date" and "updated date" in Jupyter Notebook file browsing scree (i.e. "Home" - http://localhost:8888/tree).

like image 805
ot226 Avatar asked Feb 17 '16 04:02

ot226


People also ask

What does %% do in Jupyter Notebook?

Both ! and % allow you to run shell commands from a Jupyter notebook. % is provided by the IPython kernel and allows you to run "magic commands", many of which include well-known shell commands. ! , provided by Jupyter, allows shell commands to be run within cells.

What is the latest version of Jupyter Notebook?

6.4. 12 is the latest version available.

What is %% time in Jupyter Notebook?

%%timeit in Jupyter Notebook The “%%timeit” command is used to measure the execution time of the entire cell code and can contain several code lines that may be written in the next line. The “%%timeit” is easiest to use because you need to enter “%%timeit” only at the start of the cell.

How do you check data on Jupyter Notebook?

In a Jupyter notebook, simply typing the name of a data frame will result in a neatly formatted outputs. This is an excellent way to preview data, however notes that, by default, only 100 rows will print, and 20 columns.


1 Answers

They are working on the feature:

https://github.com/jupyter/notebook/pull/943

It will be available in version 5.0

like image 165
Oren Avatar answered Oct 08 '22 21:10

Oren