国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁技術(shù)文章
文章詳情頁

Python數(shù)據(jù)分析JupyterNotebook3魔法命令詳解及示例

瀏覽:66日期:2022-06-04 15:36:13
目錄
  • 1、魔法命令介紹
    • %lsmagic:列出所有magics命令
    • %quickref:輸出所有魔法指令的簡單版幫助文檔
    • %Magics_Name?:輸出某個魔法命令詳細(xì)幫助文檔
  • 2、Line magics:Line魔法指令
    • 3、Cell magics:Cell魔法指令
      • 寫bash程序
      • 寫perl程序

    1、魔法命令介紹

    %lsmagic:列出所有magics命令

    Available line magics:【對當(dāng)前行使用共計93個】%alias  %alias_magic  %autoawait  %autocall  %automagic  %autosave  %bookmark  %cd  %clear  %cls  %colors  %conda  %config  %connect_info  %copy  %ddir  %debug  %dhist  %dirs  %doctest_mode  %echo  %ed  %edit  %env  %gui  %hist  %history  %killbgscripts  %ldir  %less  %load  %load_ext  %loadpy  %logoff  %logon  %logstart  %logstate  %logstop  %ls  %lsmagic  %macro  %magic  %matplotlib  %mkdir  %more  %notebook  %page  %pastebin  %pdb  %pdef  %pdoc  %pfile  %pinfo  %pinfo2  %pip  %popd  %pprint  %precision  %prun  %psearch  %psource  %pushd  %pwd  %pycat  %pylab  %qtconsole  %quickref  %recall  %rehashx  %reload_ext  %ren  %rep  %rerun  %reset  %reset_selective  %rmdir  %run  %save  %sc  %set_env  %store  %sx  %system  %tb  %time  %timeit  %unalias  %unload_ext  %who  %who_ls  %whos  %xdel  %xmode Available cell magics:【對當(dāng)前cell使用共計28個】%%!  %%HTML  %%SVG  %%bash  %%capture  %%cmd  %%debug  %%file  %%html  %%javascript  %%js  %%latex  %%markdown  %%perl  %%prun  %%pypy  %%python  %%python2  %%python3  %%ruby  %%script  %%sh  %%svg  %%sx  %%system  %%time  %%timeit  %%writefile

    %quickref:輸出所有魔法指令的簡單版幫助文檔

    %Magics_Name?:輸出某個魔法命令詳細(xì)幫助文檔

    魔法命令名稱?輸出魔法命令的詳細(xì)幫助文檔,以%alias為例:

    2、Line magics:Line魔法指令

    %alias:設(shè)置指令的別名

    windows有8個默認(rèn)的指令,功能和linux下一樣。

    #Windows下有8個命令I(lǐng)n [1]: %alias#Total number of aliases: 8Out[1]:[("copy", "copy"), ("ddir", "dir /ad /on"), ("echo", "echo"), ("ldir", "dir /ad /on"),#列出文件夾 ("ls", "dir /on"), ("mkdir", "mkdir"),#創(chuàng)建文件夾 ("ren", "ren"), ("rmdir", "rmdir")]#刪除文件夾

    Linux下有16個默認(rèn)指令,感興趣可自己試驗。

    In [3]: %aliasTotal number of aliases: 16Out[3]:[("cat", "cat"), ("clear", "clear"), ("cp", "cp"), ("ldir", "ls -F -o --color %l | grep /$"), ("less", "less"), ("lf", "ls -F -o --color %l | grep ^-"), ("lk", "ls -F -o --color %l | grep ^l"), ("ll", "ls -F -o --color"), ("ls", "ls -F --color"), ("lx", "ls -F -o --color %l | grep ^-..x"), ("man", "man"), ("mkdir", "mkdir"), ("more", "more"), ("mv", "mv"), ("rm", "rm"), ("rmdir", "rmdir")]

    自己設(shè)置指令的別名,個人感覺沒啥意義,介紹一個。

    %conda:cell中安裝packageM

    %conda install package_names

    %dhist:輸出歷史訪問目錄

    %history:列出歷史輸入的指令

    效果類似linux中history。

    %magic:輸出所有魔法指令幫助文檔

    %matplotlib inline:效果等價于plt.show()

    %notebook:導(dǎo)出當(dāng)前notebook所有歷史輸入到一個文件中

    %notebook notebook.ipynb將所有歷史輸入導(dǎo)入notebook.ipynb文件中

    %pip:在cell中使用pip指令

    %pwd:輸出當(dāng)前路徑

    %pycat:預(yù)覽文件,類似linux中cat

    %run:執(zhí)行腳本

    %time:執(zhí)行時間

    3、Cell magics:Cell魔法指令

    %%writefile:將當(dāng)前cell中內(nèi)容寫入文件中

    %%latex:寫Latex公式

    %%latex\begin{equation}  \int_0^\infty \frac{x^3}{e^x-1}\,dx = \frac{\pi^4}{15}  \label{eq:sample}\end{equation}

    %%script :寫bash、perl、javascript、js 等命令

    這個可以使用bash、perl、javascript、js 等等,不過經(jīng)過測試,在jupyter notebook中不友好,在ipython中沒什么問題。

    以下在ipython中完成:

    寫bash程序

    In [9]: %%script bash   ...: for i in 1 2 3; do   ...: echo $i;   ...: done123

    寫perl程序

    In [11]: %%script perl    ...: print "hhn";hhn

    寫python2程序

    In [12]: %%script python2    ...: print "hhhn"    ...:    ...:hhhn

    參考資料:https://ipython.readthedocs.io/en/stable/interactive/magics.html#

    以上就是JupyterNotebook3魔法命令詳解及示例的詳細(xì)內(nèi)容,更多關(guān)于JupyterNotebook3魔法命令的資料請關(guān)注其它相關(guān)文章!

    標(biāo)簽: ASP Python 編程語言
    相關(guān)文章:
    主站蜘蛛池模板: 欧美另类69xxxxx极品 | 亚洲国产精品线播放 | 在线观看国产精品入口 | 国产一级一国产一级毛片 | 国产成人高清在线观看播放 | 中文 日本 免费 高清 | 91国内在线| 久在线| 成人欧美在线 | 亚洲欧美日本国产 | 操你.com| 视频一区在线免费观看 | 亚洲天堂视频网站 | 国产成人综合亚洲 | 久草视频在线资源站 | 欧美激情 自拍 | 国产乱子伦在线观看不卡 | 91香蕉国产线在线观看免费 | 在线播放一区二区三区 | 视频一区在线播放 | 欧美另类亚洲一区二区 | 国产欧美一区二区三区免费 | 成人精品视频在线 | 成人久久在线 | 国产一级久久免费特黄 | 九色porny真实丨国产18 | 欧美俄罗斯一级毛片 | 亚洲成人自拍网 | 欧美性性性性性色大片免费的 | 成人在线精品视频 | 国产成人精品免费视频大 | 免费不卡毛片 | 在线日韩欧美一区二区三区 | 无码孕妇孕交在线观看 | 国产亚洲精品自在线观看 | 久草免费小视频 | 久视频免费精品6 | 最新中文字幕乱码在线 | 一级毛片不卡 | 亚洲免费视频一区 | 九九国产在线观看 |