Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Current »

Как сделать интерактивные графики с помощью matplotlib?

import matplotlib.pyplot as plt
%matplotlib nbagg

Или:

import matplotlib.pyplot as plt
%matplotlib notebook

Как активировать plotly off-line?

from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot
import plotly
import plotly.graph_objs as go

init_notebook_mode(connected=True)

Как скрыть ячейки с кодом в Jupyter?

from IPython.display import HTML

HTML('''<script>
code_show=true; 
function code_toggle() {
 if (code_show){
 $('div.input').hide();
 } else {
 $('div.input').show();
 }
 code_show = !code_show
} 
$( document ).ready(code_toggle);
</script>
<form action="javascript:code_toggle()"><input type="submit" value="Click here to toggle on/off the raw code."></form>''')


Как сохранить внешние картинки при экспорте notebook в html?

Use the CLI, Luke.

jupyter nbconvert --to html_embed mynotebook.ipynb

Как быстро вычислять на питоне?

Если кратко, то NumPy и SciPy. Если более подробно то perfomance python.

Как отформатировать данные в виде таблицы?





No files shared here yet.




  • No labels