├── Chapter01 ├── 01. Juliaをバイナリパッケージでインストールする │ └── commands.txt ├── 02. JuliaをIDEで使う │ └── SublimeText.txt ├── 03. Juliaをテキストエディタで使う │ └── commands.txt ├── 04. JuliaをLinux でソースからビルドする │ └── commands.txt ├── 05. JuliaをAWSクラウド上のCloud9 IDEで使う │ └── JuliaRunner.run ├── 06. Julia起動時の動作を変更する │ ├── commands.txt │ ├── hello.jl │ └── startup.jl ├── 07. Juliaをマルチコアで使う │ ├── commands.txt │ ├── hello.jl │ └── hello2.jl ├── 08. Juliaのインタラクティブモードを使いこなす │ ├── commands.txt │ └── example.jl ├── 09. Juliaで計算結果を表示する │ ├── commands.txt │ ├── display.jl │ └── display2.jl ├── 10. パッケージの管理 │ └── commands.txt ├── 11. JuliaをJupyter Notebookで使う │ └── commands.txt ├── 12. JuliaをJupyterLabで使う │ └── commands.txt └── 13. ターミナルしか使えないクラウド環境でJupyter Notebookを使う │ └── commands.txt ├── Chapter02 ├── 01. 配列中の最小要素のインデックスを取得する │ ├── 2.1 配列中の最小要素のインデックスを取得する.ipynb │ ├── commands.txt │ └── randargmin2.jl ├── 02. 行列乗算を高速に行う │ ├── 2.2 行列乗算を高速に行う.ipynb │ ├── commands.txt │ └── fastmatmul.jl ├── 03. カスタム擬似乱数生成器を実装する │ ├── 2.3 カスタム疑似乱数生成器を実装する.ipynb │ └── commands.txt ├── 04. 正規表現を使ってGitログを解析する │ ├── 2.4 Gitログを正規表現を使って解析する.ipynb │ ├── commands.txt │ └── parselog.jl ├── 05. 標準的でない基準でデータをソートする │ ├── 2.5 標準的でない基準でデータをソートする.ipynb │ └── commands.txt ├── 06. 関数原像の生成-辞書とセットの機能を理解する │ ├── 2.6 関数原像の生成-辞書とセットの機能を理解する.ipynb │ └── commands.txt └── 07. UTF-8文字列を扱う │ ├── 2.7 UTF-8文字列を扱う.ipynb │ ├── commands.txt │ └── hello.txt ├── Chapter03 ├── 01. ストリームを管理し、ファイルに読み書きする │ ├── 3.01 ストリームを管理し、ファイルに読み書きする.ipynb │ ├── commands.txt │ ├── iotest.jl │ ├── iotest.txt │ └── iotest2.txt ├── 02. IOBufferを使って効率的なインメモリストリームを作る │ ├── 3.02 IOBufferを使って効率的なインメモリストリームを作る.ipynb │ └── commands.txt ├── 03. インターネットからデータを取得する │ ├── 3.03 インターネットからデータを取得する.ipynb │ └── commands.txt ├── 04. 簡単なRESTfulサービスを作ってみる │ ├── 3.04 簡単なRESTfulサービスを作ってみる - クライアント.ipynb │ ├── 3.04 簡単なRESTfulサービスを作ってみる - サーバ.ipynb │ ├── 3.04 簡単なRESTfulサービスを作ってみる-ZeroMQ Server.ipynb │ ├── 3.04 簡単なRESTfulサービスを作ってみる-ZeroMQ Web Client.ipynb │ ├── 3.04 簡単なRESTfulサービスを作ってみる-ZeroMQ Web Server.ipynb │ └── commands.txt ├── 05. JSONデータを処理する │ ├── 3.05 JSONデータを処理する.ipynb │ └── commands.txt ├── 06. 日付と時刻を扱う │ ├── 3.06 日付と時刻を扱う.ipynb │ └── commands.txt ├── 07. オブジェクトをシリアライズする │ ├── 3.07 オブジェクトをシリアライズする.ipynb │ └── commands.txt ├── 08. Juliaをバックグラウンドプロセスとして使う │ ├── 3.08 Juliaをバックグラウンドプロセスとして使う.ipynb │ └── commands.txt ├── 09. Microsoft Excelファイルを読み書きする │ ├── 3.09 Microsoft Excelファイルを読み書きする.ipynb │ └── commands.txt ├── 10. Featherデータを扱う │ ├── 3.10 Featherデータを扱う.ipynb │ └── commands.txt └── 11. CSVファイルとFWFファイルを読み込む │ ├── 3.11 CSVファイルとFWFファイルを読み込む.ipynb │ └── commands.txt ├── Chapter04 ├── 01. 行列処理を高速化する │ ├── 4.01 行列処理を高速化する.ipynb │ ├── commands.txt │ └── sums.jl ├── 02. 条件文のあるループの効率的な実行 │ ├── 4.02 条件文のあるループの効率的な実行.ipynb │ └── commands.txt ├── 03. 完全実施要因計画の生成 │ ├── 4.03 完全実施要因計画の生成.ipynb │ ├── commands.txt │ └── expand.jl ├── 04. 級数の部分和によるπの近似 │ ├── 4.04 級数の部分和によるπの近似.ipynb │ └── commands.txt ├── 05. モンテカルロシミュレーションの実行 │ ├── 4.05 モンテカルロ・シミュレーションの実行.ipynb │ ├── commands.txt │ └── simwalk.jl ├── 06. 待ち行列の解析 │ ├── 4.06 待ち行列の解析.ipynb │ ├── commands.txt │ └── mm1.jl ├── 07. 複素数を用いた計算 │ ├── 4.07 複素数を用いた計算.ipynb │ └── commands.txt ├── 08. 単純な最適化を書いてみる │ ├── 4.08 単純な最適化を書いてみる.ipynb │ ├── commands.txt │ └── marquardt.jl ├── 09. 線形回帰で予測する │ ├── 4.09 線形回帰で予測する.ipynb │ ├── commands.txt │ ├── lm.jl │ └── wages.csv ├── 10. Juliaのブロードキャストを理解する │ ├── 4.10 Juliaのブロードキャストを理解する.ipynb │ └── commands.txt ├── 11. @inbounds を使って高速化する │ ├── 4.11 @inbounds を使って高速化する.ipynb │ ├── commands.txt │ └── inbounds.jl ├── 12. ベクトルの集合から行列を作る │ ├── 4.12 ベクトルの集合から行列をつくる.ipynb │ └── commands.txt └── 13. 配列ビューを使って使用メモリ量を減らす │ ├── 4.13 配列ビューを使って使用メモリ量を減らす.ipynb │ ├── commands.txt │ ├── p096_sudoku.txt │ └── sudoku.jl ├── Chapter05 ├── 01. Juliaのサブタイプを理解する │ ├── 5.01 Juliaのサブタイプを理解する.ipynb │ └── commands.txt ├── 02. 多重ディスパッチで動作を切り替える │ ├── 5.02 多重ディスパッチで動作を切り替える.ipynb │ └── commands.txt ├── 03. 関数を値として使う │ ├── 5.03 関数を値として使う.ipynb │ └── commands.txt ├── 04. 関数型でプログラミングする │ ├── 5.04 関数型でプログラミングする.ipynb │ └── commands.txt ├── 05. 変数のスコープを理解する │ ├── 5.05 変数のスコープを理解する.ipynb │ └── commands.txt ├── 06. 例外処理 │ ├── 5.06 例外処理.ipynb │ └── commands.txt └── 07. 名前付きタプルの使い方 │ ├── 5.07 名前付きタプルの使い方.ipynb │ └── commands.txt ├── Chapter06 ├── 01. メタプログラミングを理解する │ ├── 6.01 メタプログラミングを理解する.ipynb │ └── commands.txt ├── 02. マクロと関数生成を理解する │ ├── 6.02 マクロと関数生成を理解する.ipynb │ └── commands.txt ├── 03. ユーザ定義型を作ってみる−連結リスト │ ├── 6.03 ユーザ定義型を作ってみる - 連結リスト.ipynb │ ├── commands.txt │ └── ll.jl ├── 04. 基本型を定義する │ ├── 6.04 基本型を定義する.ipynb │ ├── argb.jl │ └── commands.txt ├── 05. イントロスペクションを使ってJuliaの数値型の構成を調べる │ ├── 6.05 イントロスペクションを使ってJuliaの数値型の構成を調べる.ipynb │ ├── commands.txt │ └── types.jl ├── 06. 静的配列を利用する │ ├── 6.06 静的配列を利用する.ipynb │ └── commands.txt ├── 07. 変更可能型と変更不能型の性能差を確認する │ ├── 6.07 変更可能型と変更不能型の性能差を確認する.ipynb │ ├── commands.txt │ ├── walk.jl │ └── work.jl └── 08. 型安定性を保証する │ ├── 6.08 型安定性を保証する.ipynb │ ├── commands.txt │ └── quad.jl ├── Chapter07 ├── 01. データフレームと行列を変換する │ ├── 7.01 データフレームと行列を変換する.ipynb │ └── commands.txt ├── 02. データフレームの内容を確認する │ ├── 7.02 データフレームの内容を確認する.ipynb │ └── commands.txt ├── 03. インターネット上のCSVデータを読み込む │ ├── 7.03 インターネット上のCSVデータを読み込む.ipynb │ ├── commands.txt │ └── iris.csv ├── 04. カテゴリデータを処理する │ ├── 7.04 カテゴリデータを処理する.ipynb │ └── commands.txt ├── 05. 欠損値を扱う │ ├── 7.05 欠損値を扱う.ipynb │ ├── commands.txt │ ├── cor.jl │ └── grades.csv ├── 06. データフレームを使って分割‐適用‐結合を行う │ ├── 7.06 DataFrameを使って分割-適用-結合を行う.ipynb │ ├── commands.txt │ └── iris.csv ├── 07. 縦型データフレームと横型データフレームを変換する │ ├── 7.07 縦型データフレームと横型データフレームを変換する.ipynb │ ├── commands.txt │ └── iris.csv ├── 08. データフレームの同一性を判定する │ ├── 7.08 データフレームの同一性を判定する.ipynb │ ├── commands.txt │ └── grades.csv ├── 09. データフレームの行を変換する │ ├── 7.09 データフレームの行を変換する.ipynb │ ├── commands.txt │ └── grades.csv └── 10. データフレーム変換を繰り返してピボットテーブルを作成する │ ├── 7.10 データフレーム変換を繰り返してピボットテーブルを作成する.ipynb │ ├── commands.txt │ └── iris.csv ├── Chapter08 ├── 01. Revise.jlを用いてモジュールを開発する │ ├── 8.1 Revise.jlを用いてモジュールを開発する.ipynb │ ├── Module1.jl │ └── commands.txt ├── 02. コードのベンチマーク │ ├── 8.2 コードのベンチマーク.ipynb │ └── commands.txt ├── 03. コードのプロファイリング │ ├── 8.3 コードのプロファイリング.ipynb │ ├── commands.txt │ └── profiletest.jl ├── 04. コードのログを取る │ ├── 8.4 コードのログをとる.ipynb │ └── commands.txt ├── 05. JuliaからPythonを使う │ ├── 8.5 JuliaからPythonを使う.ipynb │ └── commands.txt ├── 06. JuliaからRを使う │ ├── 8.6 JuliaからRを使う.ipynb │ └── commands.txt └── 07. フロジェクトの依存関係を管理する │ ├── 8.7 プロジェクトの依存関係を管理する.ipynb │ └── commands.txt ├── Chapter09 ├── 01. Juliaでデータベースを使う │ ├── 9.1 Juliaでデータベースを使う - JDBC-Oracle.ipynb │ ├── 9.1 Juliaでデータベースを使う - MySQL.ipynb │ ├── 9.1 Juliaでデータベースを使う - PostgreSQL.ipynb │ ├── 9.1 Juliaでデータベースを使う - elasticsearch.ipynb │ └── commands.txt ├── 02. JuMPを使って最適化問題を解く │ ├── 9.2 JuMPを使って最適化問題を解く.ipynb │ └── commands.txt ├── 03. 最尤推定を行う │ ├── 9.3 最尤推定を行う.ipynb │ ├── commands.txt │ └── opt.jl ├── 04. Plots.jlを使って複雑なプロットを描く │ ├── 9.4 Plots.jl を使って複雑なプロットを描く.ipynb │ └── commands.txt └── 05. ScikitLearn.jlを使って機械学習モデルを作る │ ├── 9.5 ScikitLearn.jl を使って機械学習モデルを作る.ipynb │ └── commands.txt ├── Chapter10 ├── 01. マルチプロセスで計算する │ ├── 10.1 マルチプロセスで計算する.ipynb │ └── commands.txt ├── 02. リモートのJuliaプロセスと通信する │ ├── 10.2 リモートのJuliaプロセスと通信する.ipynb │ └── commands.txt ├── 03. マルチスレッドで計算する │ ├── 10.3 マルチスレッドで計算する.ipynb │ └── commands.txt └── 04. 分散環境で計算する │ ├── 10.4 分散環境で計算する.ipynb │ ├── commands.txt │ ├── config │ └── machinefile.txt ├── Julia_Cookbook-Supplement.md ├── LICENSE ├── README.md ├── README.md.org └── cookbookconf.jl /Chapter01/01. Juliaをバイナリパッケージでインストールする/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter01/01. Juliaをバイナリパッケージでインストールする/commands.txt -------------------------------------------------------------------------------- /Chapter01/02. JuliaをIDEで使う/SublimeText.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter01/02. JuliaをIDEで使う/SublimeText.txt -------------------------------------------------------------------------------- /Chapter01/03. Juliaをテキストエディタで使う/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter01/03. Juliaをテキストエディタで使う/commands.txt -------------------------------------------------------------------------------- /Chapter01/04. JuliaをLinux でソースからビルドする/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter01/04. JuliaをLinux でソースからビルドする/commands.txt -------------------------------------------------------------------------------- /Chapter01/05. JuliaをAWSクラウド上のCloud9 IDEで使う/JuliaRunner.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter01/05. JuliaをAWSクラウド上のCloud9 IDEで使う/JuliaRunner.run -------------------------------------------------------------------------------- /Chapter01/06. Julia起動時の動作を変更する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter01/06. Julia起動時の動作を変更する/commands.txt -------------------------------------------------------------------------------- /Chapter01/06. Julia起動時の動作を変更する/hello.jl: -------------------------------------------------------------------------------- 1 | println("Hello " * join(ARGS, ", ")) 2 | -------------------------------------------------------------------------------- /Chapter01/06. Julia起動時の動作を変更する/startup.jl: -------------------------------------------------------------------------------- 1 | using Random 2 | 3 | ENV["JULIA_EDITOR"] = "vim" 4 | 5 | println("Setup successful") 6 | -------------------------------------------------------------------------------- /Chapter01/07. Juliaをマルチコアで使う/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter01/07. Juliaをマルチコアで使う/commands.txt -------------------------------------------------------------------------------- /Chapter01/07. Juliaをマルチコアで使う/hello.jl: -------------------------------------------------------------------------------- 1 | println("Hello " * join(ARGS, ", ")) 2 | -------------------------------------------------------------------------------- /Chapter01/07. Juliaをマルチコアで使う/hello2.jl: -------------------------------------------------------------------------------- 1 | println("Hello " * join(ARGS, ", ")) 2 | sleep(1) 3 | -------------------------------------------------------------------------------- /Chapter01/08. Juliaのインタラクティブモードを使いこなす/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter01/08. Juliaのインタラクティブモードを使いこなす/commands.txt -------------------------------------------------------------------------------- /Chapter01/08. Juliaのインタラクティブモードを使いこなす/example.jl: -------------------------------------------------------------------------------- 1 | println("An example was run!") 2 | -------------------------------------------------------------------------------- /Chapter01/09. Juliaで計算結果を表示する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter01/09. Juliaで計算結果を表示する/commands.txt -------------------------------------------------------------------------------- /Chapter01/09. Juliaで計算結果を表示する/display.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter01/09. Juliaで計算結果を表示する/display.jl -------------------------------------------------------------------------------- /Chapter01/09. Juliaで計算結果を表示する/display2.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter01/09. Juliaで計算結果を表示する/display2.jl -------------------------------------------------------------------------------- /Chapter01/10. パッケージの管理/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter01/10. パッケージの管理/commands.txt -------------------------------------------------------------------------------- /Chapter01/11. JuliaをJupyter Notebookで使う/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter01/11. JuliaをJupyter Notebookで使う/commands.txt -------------------------------------------------------------------------------- /Chapter01/12. JuliaをJupyterLabで使う/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter01/12. JuliaをJupyterLabで使う/commands.txt -------------------------------------------------------------------------------- /Chapter01/13. ターミナルしか使えないクラウド環境でJupyter Notebookを使う/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter01/13. ターミナルしか使えないクラウド環境でJupyter Notebookを使う/commands.txt -------------------------------------------------------------------------------- /Chapter02/01. 配列中の最小要素のインデックスを取得する/2.1 配列中の最小要素のインデックスを取得する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter02/01. 配列中の最小要素のインデックスを取得する/2.1 配列中の最小要素のインデックスを取得する.ipynb -------------------------------------------------------------------------------- /Chapter02/01. 配列中の最小要素のインデックスを取得する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter02/01. 配列中の最小要素のインデックスを取得する/commands.txt -------------------------------------------------------------------------------- /Chapter02/01. 配列中の最小要素のインデックスを取得する/randargmin2.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter02/01. 配列中の最小要素のインデックスを取得する/randargmin2.jl -------------------------------------------------------------------------------- /Chapter02/02. 行列乗算を高速に行う/2.2 行列乗算を高速に行う.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter02/02. 行列乗算を高速に行う/2.2 行列乗算を高速に行う.ipynb -------------------------------------------------------------------------------- /Chapter02/02. 行列乗算を高速に行う/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter02/02. 行列乗算を高速に行う/commands.txt -------------------------------------------------------------------------------- /Chapter02/02. 行列乗算を高速に行う/fastmatmul.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter02/02. 行列乗算を高速に行う/fastmatmul.jl -------------------------------------------------------------------------------- /Chapter02/03. カスタム擬似乱数生成器を実装する/2.3 カスタム疑似乱数生成器を実装する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter02/03. カスタム擬似乱数生成器を実装する/2.3 カスタム疑似乱数生成器を実装する.ipynb -------------------------------------------------------------------------------- /Chapter02/03. カスタム擬似乱数生成器を実装する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter02/03. カスタム擬似乱数生成器を実装する/commands.txt -------------------------------------------------------------------------------- /Chapter02/04. 正規表現を使ってGitログを解析する/2.4 Gitログを正規表現を使って解析する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter02/04. 正規表現を使ってGitログを解析する/2.4 Gitログを正規表現を使って解析する.ipynb -------------------------------------------------------------------------------- /Chapter02/04. 正規表現を使ってGitログを解析する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter02/04. 正規表現を使ってGitログを解析する/commands.txt -------------------------------------------------------------------------------- /Chapter02/04. 正規表現を使ってGitログを解析する/parselog.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter02/04. 正規表現を使ってGitログを解析する/parselog.jl -------------------------------------------------------------------------------- /Chapter02/05. 標準的でない基準でデータをソートする/2.5 標準的でない基準でデータをソートする.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter02/05. 標準的でない基準でデータをソートする/2.5 標準的でない基準でデータをソートする.ipynb -------------------------------------------------------------------------------- /Chapter02/05. 標準的でない基準でデータをソートする/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter02/05. 標準的でない基準でデータをソートする/commands.txt -------------------------------------------------------------------------------- /Chapter02/06. 関数原像の生成-辞書とセットの機能を理解する/2.6 関数原像の生成-辞書とセットの機能を理解する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter02/06. 関数原像の生成-辞書とセットの機能を理解する/2.6 関数原像の生成-辞書とセットの機能を理解する.ipynb -------------------------------------------------------------------------------- /Chapter02/06. 関数原像の生成-辞書とセットの機能を理解する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter02/06. 関数原像の生成-辞書とセットの機能を理解する/commands.txt -------------------------------------------------------------------------------- /Chapter02/07. UTF-8文字列を扱う/2.7 UTF-8文字列を扱う.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter02/07. UTF-8文字列を扱う/2.7 UTF-8文字列を扱う.ipynb -------------------------------------------------------------------------------- /Chapter02/07. UTF-8文字列を扱う/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter02/07. UTF-8文字列を扱う/commands.txt -------------------------------------------------------------------------------- /Chapter02/07. UTF-8文字列を扱う/hello.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter02/07. UTF-8文字列を扱う/hello.txt -------------------------------------------------------------------------------- /Chapter03/01. ストリームを管理し、ファイルに読み書きする/3.01 ストリームを管理し、ファイルに読み書きする.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/01. ストリームを管理し、ファイルに読み書きする/3.01 ストリームを管理し、ファイルに読み書きする.ipynb -------------------------------------------------------------------------------- /Chapter03/01. ストリームを管理し、ファイルに読み書きする/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/01. ストリームを管理し、ファイルに読み書きする/commands.txt -------------------------------------------------------------------------------- /Chapter03/01. ストリームを管理し、ファイルに読み書きする/iotest.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/01. ストリームを管理し、ファイルに読み書きする/iotest.jl -------------------------------------------------------------------------------- /Chapter03/01. ストリームを管理し、ファイルに読み書きする/iotest.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 3 -------------------------------------------------------------------------------- /Chapter03/01. ストリームを管理し、ファイルに読み書きする/iotest2.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 4 -------------------------------------------------------------------------------- /Chapter03/02. IOBufferを使って効率的なインメモリストリームを作る/3.02 IOBufferを使って効率的なインメモリストリームを作る.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/02. IOBufferを使って効率的なインメモリストリームを作る/3.02 IOBufferを使って効率的なインメモリストリームを作る.ipynb -------------------------------------------------------------------------------- /Chapter03/02. IOBufferを使って効率的なインメモリストリームを作る/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/02. IOBufferを使って効率的なインメモリストリームを作る/commands.txt -------------------------------------------------------------------------------- /Chapter03/03. インターネットからデータを取得する/3.03 インターネットからデータを取得する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/03. インターネットからデータを取得する/3.03 インターネットからデータを取得する.ipynb -------------------------------------------------------------------------------- /Chapter03/03. インターネットからデータを取得する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/03. インターネットからデータを取得する/commands.txt -------------------------------------------------------------------------------- /Chapter03/04. 簡単なRESTfulサービスを作ってみる/3.04 簡単なRESTfulサービスを作ってみる - クライアント.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/04. 簡単なRESTfulサービスを作ってみる/3.04 簡単なRESTfulサービスを作ってみる - クライアント.ipynb -------------------------------------------------------------------------------- /Chapter03/04. 簡単なRESTfulサービスを作ってみる/3.04 簡単なRESTfulサービスを作ってみる - サーバ.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/04. 簡単なRESTfulサービスを作ってみる/3.04 簡単なRESTfulサービスを作ってみる - サーバ.ipynb -------------------------------------------------------------------------------- /Chapter03/04. 簡単なRESTfulサービスを作ってみる/3.04 簡単なRESTfulサービスを作ってみる-ZeroMQ Server.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/04. 簡単なRESTfulサービスを作ってみる/3.04 簡単なRESTfulサービスを作ってみる-ZeroMQ Server.ipynb -------------------------------------------------------------------------------- /Chapter03/04. 簡単なRESTfulサービスを作ってみる/3.04 簡単なRESTfulサービスを作ってみる-ZeroMQ Web Client.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/04. 簡単なRESTfulサービスを作ってみる/3.04 簡単なRESTfulサービスを作ってみる-ZeroMQ Web Client.ipynb -------------------------------------------------------------------------------- /Chapter03/04. 簡単なRESTfulサービスを作ってみる/3.04 簡単なRESTfulサービスを作ってみる-ZeroMQ Web Server.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/04. 簡単なRESTfulサービスを作ってみる/3.04 簡単なRESTfulサービスを作ってみる-ZeroMQ Web Server.ipynb -------------------------------------------------------------------------------- /Chapter03/04. 簡単なRESTfulサービスを作ってみる/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/04. 簡単なRESTfulサービスを作ってみる/commands.txt -------------------------------------------------------------------------------- /Chapter03/05. JSONデータを処理する/3.05 JSONデータを処理する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/05. JSONデータを処理する/3.05 JSONデータを処理する.ipynb -------------------------------------------------------------------------------- /Chapter03/05. JSONデータを処理する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/05. JSONデータを処理する/commands.txt -------------------------------------------------------------------------------- /Chapter03/06. 日付と時刻を扱う/3.06 日付と時刻を扱う.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/06. 日付と時刻を扱う/3.06 日付と時刻を扱う.ipynb -------------------------------------------------------------------------------- /Chapter03/06. 日付と時刻を扱う/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/06. 日付と時刻を扱う/commands.txt -------------------------------------------------------------------------------- /Chapter03/07. オブジェクトをシリアライズする/3.07 オブジェクトをシリアライズする.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/07. オブジェクトをシリアライズする/3.07 オブジェクトをシリアライズする.ipynb -------------------------------------------------------------------------------- /Chapter03/07. オブジェクトをシリアライズする/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/07. オブジェクトをシリアライズする/commands.txt -------------------------------------------------------------------------------- /Chapter03/08. Juliaをバックグラウンドプロセスとして使う/3.08 Juliaをバックグラウンドプロセスとして使う.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/08. Juliaをバックグラウンドプロセスとして使う/3.08 Juliaをバックグラウンドプロセスとして使う.ipynb -------------------------------------------------------------------------------- /Chapter03/08. Juliaをバックグラウンドプロセスとして使う/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/08. Juliaをバックグラウンドプロセスとして使う/commands.txt -------------------------------------------------------------------------------- /Chapter03/09. Microsoft Excelファイルを読み書きする/3.09 Microsoft Excelファイルを読み書きする.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/09. Microsoft Excelファイルを読み書きする/3.09 Microsoft Excelファイルを読み書きする.ipynb -------------------------------------------------------------------------------- /Chapter03/09. Microsoft Excelファイルを読み書きする/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/09. Microsoft Excelファイルを読み書きする/commands.txt -------------------------------------------------------------------------------- /Chapter03/10. Featherデータを扱う/3.10 Featherデータを扱う.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/10. Featherデータを扱う/3.10 Featherデータを扱う.ipynb -------------------------------------------------------------------------------- /Chapter03/10. Featherデータを扱う/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/10. Featherデータを扱う/commands.txt -------------------------------------------------------------------------------- /Chapter03/11. CSVファイルとFWFファイルを読み込む/3.11 CSVファイルとFWFファイルを読み込む.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/11. CSVファイルとFWFファイルを読み込む/3.11 CSVファイルとFWFファイルを読み込む.ipynb -------------------------------------------------------------------------------- /Chapter03/11. CSVファイルとFWFファイルを読み込む/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter03/11. CSVファイルとFWFファイルを読み込む/commands.txt -------------------------------------------------------------------------------- /Chapter04/01. 行列処理を高速化する/4.01 行列処理を高速化する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/01. 行列処理を高速化する/4.01 行列処理を高速化する.ipynb -------------------------------------------------------------------------------- /Chapter04/01. 行列処理を高速化する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/01. 行列処理を高速化する/commands.txt -------------------------------------------------------------------------------- /Chapter04/01. 行列処理を高速化する/sums.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/01. 行列処理を高速化する/sums.jl -------------------------------------------------------------------------------- /Chapter04/02. 条件文のあるループの効率的な実行/4.02 条件文のあるループの効率的な実行.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/02. 条件文のあるループの効率的な実行/4.02 条件文のあるループの効率的な実行.ipynb -------------------------------------------------------------------------------- /Chapter04/02. 条件文のあるループの効率的な実行/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/02. 条件文のあるループの効率的な実行/commands.txt -------------------------------------------------------------------------------- /Chapter04/03. 完全実施要因計画の生成/4.03 完全実施要因計画の生成.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/03. 完全実施要因計画の生成/4.03 完全実施要因計画の生成.ipynb -------------------------------------------------------------------------------- /Chapter04/03. 完全実施要因計画の生成/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/03. 完全実施要因計画の生成/commands.txt -------------------------------------------------------------------------------- /Chapter04/03. 完全実施要因計画の生成/expand.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/03. 完全実施要因計画の生成/expand.jl -------------------------------------------------------------------------------- /Chapter04/04. 級数の部分和によるπの近似/4.04 級数の部分和によるπの近似.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/04. 級数の部分和によるπの近似/4.04 級数の部分和によるπの近似.ipynb -------------------------------------------------------------------------------- /Chapter04/04. 級数の部分和によるπの近似/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/04. 級数の部分和によるπの近似/commands.txt -------------------------------------------------------------------------------- /Chapter04/05. モンテカルロシミュレーションの実行/4.05 モンテカルロ・シミュレーションの実行.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/05. モンテカルロシミュレーションの実行/4.05 モンテカルロ・シミュレーションの実行.ipynb -------------------------------------------------------------------------------- /Chapter04/05. モンテカルロシミュレーションの実行/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/05. モンテカルロシミュレーションの実行/commands.txt -------------------------------------------------------------------------------- /Chapter04/05. モンテカルロシミュレーションの実行/simwalk.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/05. モンテカルロシミュレーションの実行/simwalk.jl -------------------------------------------------------------------------------- /Chapter04/06. 待ち行列の解析/4.06 待ち行列の解析.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/06. 待ち行列の解析/4.06 待ち行列の解析.ipynb -------------------------------------------------------------------------------- /Chapter04/06. 待ち行列の解析/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/06. 待ち行列の解析/commands.txt -------------------------------------------------------------------------------- /Chapter04/06. 待ち行列の解析/mm1.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/06. 待ち行列の解析/mm1.jl -------------------------------------------------------------------------------- /Chapter04/07. 複素数を用いた計算/4.07 複素数を用いた計算.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/07. 複素数を用いた計算/4.07 複素数を用いた計算.ipynb -------------------------------------------------------------------------------- /Chapter04/07. 複素数を用いた計算/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/07. 複素数を用いた計算/commands.txt -------------------------------------------------------------------------------- /Chapter04/08. 単純な最適化を書いてみる/4.08 単純な最適化を書いてみる.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/08. 単純な最適化を書いてみる/4.08 単純な最適化を書いてみる.ipynb -------------------------------------------------------------------------------- /Chapter04/08. 単純な最適化を書いてみる/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/08. 単純な最適化を書いてみる/commands.txt -------------------------------------------------------------------------------- /Chapter04/08. 単純な最適化を書いてみる/marquardt.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/08. 単純な最適化を書いてみる/marquardt.jl -------------------------------------------------------------------------------- /Chapter04/09. 線形回帰で予測する/4.09 線形回帰で予測する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/09. 線形回帰で予測する/4.09 線形回帰で予測する.ipynb -------------------------------------------------------------------------------- /Chapter04/09. 線形回帰で予測する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/09. 線形回帰で予測する/commands.txt -------------------------------------------------------------------------------- /Chapter04/09. 線形回帰で予測する/lm.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/09. 線形回帰で予測する/lm.jl -------------------------------------------------------------------------------- /Chapter04/09. 線形回帰で予測する/wages.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/09. 線形回帰で予測する/wages.csv -------------------------------------------------------------------------------- /Chapter04/10. Juliaのブロードキャストを理解する/4.10 Juliaのブロードキャストを理解する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/10. Juliaのブロードキャストを理解する/4.10 Juliaのブロードキャストを理解する.ipynb -------------------------------------------------------------------------------- /Chapter04/10. Juliaのブロードキャストを理解する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/10. Juliaのブロードキャストを理解する/commands.txt -------------------------------------------------------------------------------- /Chapter04/11. @inbounds を使って高速化する/4.11 @inbounds を使って高速化する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/11. @inbounds を使って高速化する/4.11 @inbounds を使って高速化する.ipynb -------------------------------------------------------------------------------- /Chapter04/11. @inbounds を使って高速化する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/11. @inbounds を使って高速化する/commands.txt -------------------------------------------------------------------------------- /Chapter04/11. @inbounds を使って高速化する/inbounds.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/11. @inbounds を使って高速化する/inbounds.jl -------------------------------------------------------------------------------- /Chapter04/12. ベクトルの集合から行列を作る/4.12 ベクトルの集合から行列をつくる.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/12. ベクトルの集合から行列を作る/4.12 ベクトルの集合から行列をつくる.ipynb -------------------------------------------------------------------------------- /Chapter04/12. ベクトルの集合から行列を作る/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/12. ベクトルの集合から行列を作る/commands.txt -------------------------------------------------------------------------------- /Chapter04/13. 配列ビューを使って使用メモリ量を減らす/4.13 配列ビューを使って使用メモリ量を減らす.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/13. 配列ビューを使って使用メモリ量を減らす/4.13 配列ビューを使って使用メモリ量を減らす.ipynb -------------------------------------------------------------------------------- /Chapter04/13. 配列ビューを使って使用メモリ量を減らす/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/13. 配列ビューを使って使用メモリ量を減らす/commands.txt -------------------------------------------------------------------------------- /Chapter04/13. 配列ビューを使って使用メモリ量を減らす/p096_sudoku.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/13. 配列ビューを使って使用メモリ量を減らす/p096_sudoku.txt -------------------------------------------------------------------------------- /Chapter04/13. 配列ビューを使って使用メモリ量を減らす/sudoku.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter04/13. 配列ビューを使って使用メモリ量を減らす/sudoku.jl -------------------------------------------------------------------------------- /Chapter05/01. Juliaのサブタイプを理解する/5.01 Juliaのサブタイプを理解する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter05/01. Juliaのサブタイプを理解する/5.01 Juliaのサブタイプを理解する.ipynb -------------------------------------------------------------------------------- /Chapter05/01. Juliaのサブタイプを理解する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter05/01. Juliaのサブタイプを理解する/commands.txt -------------------------------------------------------------------------------- /Chapter05/02. 多重ディスパッチで動作を切り替える/5.02 多重ディスパッチで動作を切り替える.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter05/02. 多重ディスパッチで動作を切り替える/5.02 多重ディスパッチで動作を切り替える.ipynb -------------------------------------------------------------------------------- /Chapter05/02. 多重ディスパッチで動作を切り替える/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter05/02. 多重ディスパッチで動作を切り替える/commands.txt -------------------------------------------------------------------------------- /Chapter05/03. 関数を値として使う/5.03 関数を値として使う.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter05/03. 関数を値として使う/5.03 関数を値として使う.ipynb -------------------------------------------------------------------------------- /Chapter05/03. 関数を値として使う/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter05/03. 関数を値として使う/commands.txt -------------------------------------------------------------------------------- /Chapter05/04. 関数型でプログラミングする/5.04 関数型でプログラミングする.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter05/04. 関数型でプログラミングする/5.04 関数型でプログラミングする.ipynb -------------------------------------------------------------------------------- /Chapter05/04. 関数型でプログラミングする/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter05/04. 関数型でプログラミングする/commands.txt -------------------------------------------------------------------------------- /Chapter05/05. 変数のスコープを理解する/5.05 変数のスコープを理解する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter05/05. 変数のスコープを理解する/5.05 変数のスコープを理解する.ipynb -------------------------------------------------------------------------------- /Chapter05/05. 変数のスコープを理解する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter05/05. 変数のスコープを理解する/commands.txt -------------------------------------------------------------------------------- /Chapter05/06. 例外処理/5.06 例外処理.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter05/06. 例外処理/5.06 例外処理.ipynb -------------------------------------------------------------------------------- /Chapter05/06. 例外処理/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter05/06. 例外処理/commands.txt -------------------------------------------------------------------------------- /Chapter05/07. 名前付きタプルの使い方/5.07 名前付きタプルの使い方.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter05/07. 名前付きタプルの使い方/5.07 名前付きタプルの使い方.ipynb -------------------------------------------------------------------------------- /Chapter05/07. 名前付きタプルの使い方/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter05/07. 名前付きタプルの使い方/commands.txt -------------------------------------------------------------------------------- /Chapter06/01. メタプログラミングを理解する/6.01 メタプログラミングを理解する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/01. メタプログラミングを理解する/6.01 メタプログラミングを理解する.ipynb -------------------------------------------------------------------------------- /Chapter06/01. メタプログラミングを理解する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/01. メタプログラミングを理解する/commands.txt -------------------------------------------------------------------------------- /Chapter06/02. マクロと関数生成を理解する/6.02 マクロと関数生成を理解する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/02. マクロと関数生成を理解する/6.02 マクロと関数生成を理解する.ipynb -------------------------------------------------------------------------------- /Chapter06/02. マクロと関数生成を理解する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/02. マクロと関数生成を理解する/commands.txt -------------------------------------------------------------------------------- /Chapter06/03. ユーザ定義型を作ってみる−連結リスト/6.03 ユーザ定義型を作ってみる - 連結リスト.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/03. ユーザ定義型を作ってみる−連結リスト/6.03 ユーザ定義型を作ってみる - 連結リスト.ipynb -------------------------------------------------------------------------------- /Chapter06/03. ユーザ定義型を作ってみる−連結リスト/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/03. ユーザ定義型を作ってみる−連結リスト/commands.txt -------------------------------------------------------------------------------- /Chapter06/03. ユーザ定義型を作ってみる−連結リスト/ll.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/03. ユーザ定義型を作ってみる−連結リスト/ll.jl -------------------------------------------------------------------------------- /Chapter06/04. 基本型を定義する/6.04 基本型を定義する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/04. 基本型を定義する/6.04 基本型を定義する.ipynb -------------------------------------------------------------------------------- /Chapter06/04. 基本型を定義する/argb.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/04. 基本型を定義する/argb.jl -------------------------------------------------------------------------------- /Chapter06/04. 基本型を定義する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/04. 基本型を定義する/commands.txt -------------------------------------------------------------------------------- /Chapter06/05. イントロスペクションを使ってJuliaの数値型の構成を調べる/6.05 イントロスペクションを使ってJuliaの数値型の構成を調べる.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/05. イントロスペクションを使ってJuliaの数値型の構成を調べる/6.05 イントロスペクションを使ってJuliaの数値型の構成を調べる.ipynb -------------------------------------------------------------------------------- /Chapter06/05. イントロスペクションを使ってJuliaの数値型の構成を調べる/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/05. イントロスペクションを使ってJuliaの数値型の構成を調べる/commands.txt -------------------------------------------------------------------------------- /Chapter06/05. イントロスペクションを使ってJuliaの数値型の構成を調べる/types.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/05. イントロスペクションを使ってJuliaの数値型の構成を調べる/types.jl -------------------------------------------------------------------------------- /Chapter06/06. 静的配列を利用する/6.06 静的配列を利用する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/06. 静的配列を利用する/6.06 静的配列を利用する.ipynb -------------------------------------------------------------------------------- /Chapter06/06. 静的配列を利用する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/06. 静的配列を利用する/commands.txt -------------------------------------------------------------------------------- /Chapter06/07. 変更可能型と変更不能型の性能差を確認する/6.07 変更可能型と変更不能型の性能差を確認する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/07. 変更可能型と変更不能型の性能差を確認する/6.07 変更可能型と変更不能型の性能差を確認する.ipynb -------------------------------------------------------------------------------- /Chapter06/07. 変更可能型と変更不能型の性能差を確認する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/07. 変更可能型と変更不能型の性能差を確認する/commands.txt -------------------------------------------------------------------------------- /Chapter06/07. 変更可能型と変更不能型の性能差を確認する/walk.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/07. 変更可能型と変更不能型の性能差を確認する/walk.jl -------------------------------------------------------------------------------- /Chapter06/07. 変更可能型と変更不能型の性能差を確認する/work.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/07. 変更可能型と変更不能型の性能差を確認する/work.jl -------------------------------------------------------------------------------- /Chapter06/08. 型安定性を保証する/6.08 型安定性を保証する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/08. 型安定性を保証する/6.08 型安定性を保証する.ipynb -------------------------------------------------------------------------------- /Chapter06/08. 型安定性を保証する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/08. 型安定性を保証する/commands.txt -------------------------------------------------------------------------------- /Chapter06/08. 型安定性を保証する/quad.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter06/08. 型安定性を保証する/quad.jl -------------------------------------------------------------------------------- /Chapter07/01. データフレームと行列を変換する/7.01 データフレームと行列を変換する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/01. データフレームと行列を変換する/7.01 データフレームと行列を変換する.ipynb -------------------------------------------------------------------------------- /Chapter07/01. データフレームと行列を変換する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/01. データフレームと行列を変換する/commands.txt -------------------------------------------------------------------------------- /Chapter07/02. データフレームの内容を確認する/7.02 データフレームの内容を確認する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/02. データフレームの内容を確認する/7.02 データフレームの内容を確認する.ipynb -------------------------------------------------------------------------------- /Chapter07/02. データフレームの内容を確認する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/02. データフレームの内容を確認する/commands.txt -------------------------------------------------------------------------------- /Chapter07/03. インターネット上のCSVデータを読み込む/7.03 インターネット上のCSVデータを読み込む.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/03. インターネット上のCSVデータを読み込む/7.03 インターネット上のCSVデータを読み込む.ipynb -------------------------------------------------------------------------------- /Chapter07/03. インターネット上のCSVデータを読み込む/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/03. インターネット上のCSVデータを読み込む/commands.txt -------------------------------------------------------------------------------- /Chapter07/03. インターネット上のCSVデータを読み込む/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/03. インターネット上のCSVデータを読み込む/iris.csv -------------------------------------------------------------------------------- /Chapter07/04. カテゴリデータを処理する/7.04 カテゴリデータを処理する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/04. カテゴリデータを処理する/7.04 カテゴリデータを処理する.ipynb -------------------------------------------------------------------------------- /Chapter07/04. カテゴリデータを処理する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/04. カテゴリデータを処理する/commands.txt -------------------------------------------------------------------------------- /Chapter07/05. 欠損値を扱う/7.05 欠損値を扱う.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/05. 欠損値を扱う/7.05 欠損値を扱う.ipynb -------------------------------------------------------------------------------- /Chapter07/05. 欠損値を扱う/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/05. 欠損値を扱う/commands.txt -------------------------------------------------------------------------------- /Chapter07/05. 欠損値を扱う/cor.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/05. 欠損値を扱う/cor.jl -------------------------------------------------------------------------------- /Chapter07/05. 欠損値を扱う/grades.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/05. 欠損値を扱う/grades.csv -------------------------------------------------------------------------------- /Chapter07/06. データフレームを使って分割‐適用‐結合を行う/7.06 DataFrameを使って分割-適用-結合を行う.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/06. データフレームを使って分割‐適用‐結合を行う/7.06 DataFrameを使って分割-適用-結合を行う.ipynb -------------------------------------------------------------------------------- /Chapter07/06. データフレームを使って分割‐適用‐結合を行う/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/06. データフレームを使って分割‐適用‐結合を行う/commands.txt -------------------------------------------------------------------------------- /Chapter07/06. データフレームを使って分割‐適用‐結合を行う/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/06. データフレームを使って分割‐適用‐結合を行う/iris.csv -------------------------------------------------------------------------------- /Chapter07/07. 縦型データフレームと横型データフレームを変換する/7.07 縦型データフレームと横型データフレームを変換する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/07. 縦型データフレームと横型データフレームを変換する/7.07 縦型データフレームと横型データフレームを変換する.ipynb -------------------------------------------------------------------------------- /Chapter07/07. 縦型データフレームと横型データフレームを変換する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/07. 縦型データフレームと横型データフレームを変換する/commands.txt -------------------------------------------------------------------------------- /Chapter07/07. 縦型データフレームと横型データフレームを変換する/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/07. 縦型データフレームと横型データフレームを変換する/iris.csv -------------------------------------------------------------------------------- /Chapter07/08. データフレームの同一性を判定する/7.08 データフレームの同一性を判定する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/08. データフレームの同一性を判定する/7.08 データフレームの同一性を判定する.ipynb -------------------------------------------------------------------------------- /Chapter07/08. データフレームの同一性を判定する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/08. データフレームの同一性を判定する/commands.txt -------------------------------------------------------------------------------- /Chapter07/08. データフレームの同一性を判定する/grades.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/08. データフレームの同一性を判定する/grades.csv -------------------------------------------------------------------------------- /Chapter07/09. データフレームの行を変換する/7.09 データフレームの行を変換する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/09. データフレームの行を変換する/7.09 データフレームの行を変換する.ipynb -------------------------------------------------------------------------------- /Chapter07/09. データフレームの行を変換する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/09. データフレームの行を変換する/commands.txt -------------------------------------------------------------------------------- /Chapter07/09. データフレームの行を変換する/grades.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/09. データフレームの行を変換する/grades.csv -------------------------------------------------------------------------------- /Chapter07/10. データフレーム変換を繰り返してピボットテーブルを作成する/7.10 データフレーム変換を繰り返してピボットテーブルを作成する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/10. データフレーム変換を繰り返してピボットテーブルを作成する/7.10 データフレーム変換を繰り返してピボットテーブルを作成する.ipynb -------------------------------------------------------------------------------- /Chapter07/10. データフレーム変換を繰り返してピボットテーブルを作成する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/10. データフレーム変換を繰り返してピボットテーブルを作成する/commands.txt -------------------------------------------------------------------------------- /Chapter07/10. データフレーム変換を繰り返してピボットテーブルを作成する/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter07/10. データフレーム変換を繰り返してピボットテーブルを作成する/iris.csv -------------------------------------------------------------------------------- /Chapter08/01. Revise.jlを用いてモジュールを開発する/8.1 Revise.jlを用いてモジュールを開発する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter08/01. Revise.jlを用いてモジュールを開発する/8.1 Revise.jlを用いてモジュールを開発する.ipynb -------------------------------------------------------------------------------- /Chapter08/01. Revise.jlを用いてモジュールを開発する/Module1.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter08/01. Revise.jlを用いてモジュールを開発する/Module1.jl -------------------------------------------------------------------------------- /Chapter08/01. Revise.jlを用いてモジュールを開発する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter08/01. Revise.jlを用いてモジュールを開発する/commands.txt -------------------------------------------------------------------------------- /Chapter08/02. コードのベンチマーク/8.2 コードのベンチマーク.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter08/02. コードのベンチマーク/8.2 コードのベンチマーク.ipynb -------------------------------------------------------------------------------- /Chapter08/02. コードのベンチマーク/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter08/02. コードのベンチマーク/commands.txt -------------------------------------------------------------------------------- /Chapter08/03. コードのプロファイリング/8.3 コードのプロファイリング.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter08/03. コードのプロファイリング/8.3 コードのプロファイリング.ipynb -------------------------------------------------------------------------------- /Chapter08/03. コードのプロファイリング/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter08/03. コードのプロファイリング/commands.txt -------------------------------------------------------------------------------- /Chapter08/03. コードのプロファイリング/profiletest.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter08/03. コードのプロファイリング/profiletest.jl -------------------------------------------------------------------------------- /Chapter08/04. コードのログを取る/8.4 コードのログをとる.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter08/04. コードのログを取る/8.4 コードのログをとる.ipynb -------------------------------------------------------------------------------- /Chapter08/04. コードのログを取る/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter08/04. コードのログを取る/commands.txt -------------------------------------------------------------------------------- /Chapter08/05. JuliaからPythonを使う/8.5 JuliaからPythonを使う.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter08/05. JuliaからPythonを使う/8.5 JuliaからPythonを使う.ipynb -------------------------------------------------------------------------------- /Chapter08/05. JuliaからPythonを使う/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter08/05. JuliaからPythonを使う/commands.txt -------------------------------------------------------------------------------- /Chapter08/06. JuliaからRを使う/8.6 JuliaからRを使う.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter08/06. JuliaからRを使う/8.6 JuliaからRを使う.ipynb -------------------------------------------------------------------------------- /Chapter08/06. JuliaからRを使う/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter08/06. JuliaからRを使う/commands.txt -------------------------------------------------------------------------------- /Chapter08/07. フロジェクトの依存関係を管理する/8.7 プロジェクトの依存関係を管理する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter08/07. フロジェクトの依存関係を管理する/8.7 プロジェクトの依存関係を管理する.ipynb -------------------------------------------------------------------------------- /Chapter08/07. フロジェクトの依存関係を管理する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter08/07. フロジェクトの依存関係を管理する/commands.txt -------------------------------------------------------------------------------- /Chapter09/01. Juliaでデータベースを使う/9.1 Juliaでデータベースを使う - JDBC-Oracle.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter09/01. Juliaでデータベースを使う/9.1 Juliaでデータベースを使う - JDBC-Oracle.ipynb -------------------------------------------------------------------------------- /Chapter09/01. Juliaでデータベースを使う/9.1 Juliaでデータベースを使う - MySQL.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter09/01. Juliaでデータベースを使う/9.1 Juliaでデータベースを使う - MySQL.ipynb -------------------------------------------------------------------------------- /Chapter09/01. Juliaでデータベースを使う/9.1 Juliaでデータベースを使う - PostgreSQL.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter09/01. Juliaでデータベースを使う/9.1 Juliaでデータベースを使う - PostgreSQL.ipynb -------------------------------------------------------------------------------- /Chapter09/01. Juliaでデータベースを使う/9.1 Juliaでデータベースを使う - elasticsearch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter09/01. Juliaでデータベースを使う/9.1 Juliaでデータベースを使う - elasticsearch.ipynb -------------------------------------------------------------------------------- /Chapter09/01. Juliaでデータベースを使う/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter09/01. Juliaでデータベースを使う/commands.txt -------------------------------------------------------------------------------- /Chapter09/02. JuMPを使って最適化問題を解く/9.2 JuMPを使って最適化問題を解く.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter09/02. JuMPを使って最適化問題を解く/9.2 JuMPを使って最適化問題を解く.ipynb -------------------------------------------------------------------------------- /Chapter09/02. JuMPを使って最適化問題を解く/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter09/02. JuMPを使って最適化問題を解く/commands.txt -------------------------------------------------------------------------------- /Chapter09/03. 最尤推定を行う/9.3 最尤推定を行う.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter09/03. 最尤推定を行う/9.3 最尤推定を行う.ipynb -------------------------------------------------------------------------------- /Chapter09/03. 最尤推定を行う/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter09/03. 最尤推定を行う/commands.txt -------------------------------------------------------------------------------- /Chapter09/03. 最尤推定を行う/opt.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter09/03. 最尤推定を行う/opt.jl -------------------------------------------------------------------------------- /Chapter09/04. Plots.jlを使って複雑なプロットを描く/9.4 Plots.jl を使って複雑なプロットを描く.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter09/04. Plots.jlを使って複雑なプロットを描く/9.4 Plots.jl を使って複雑なプロットを描く.ipynb -------------------------------------------------------------------------------- /Chapter09/04. Plots.jlを使って複雑なプロットを描く/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter09/04. Plots.jlを使って複雑なプロットを描く/commands.txt -------------------------------------------------------------------------------- /Chapter09/05. ScikitLearn.jlを使って機械学習モデルを作る/9.5 ScikitLearn.jl を使って機械学習モデルを作る.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter09/05. ScikitLearn.jlを使って機械学習モデルを作る/9.5 ScikitLearn.jl を使って機械学習モデルを作る.ipynb -------------------------------------------------------------------------------- /Chapter09/05. ScikitLearn.jlを使って機械学習モデルを作る/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter09/05. ScikitLearn.jlを使って機械学習モデルを作る/commands.txt -------------------------------------------------------------------------------- /Chapter10/01. マルチプロセスで計算する/10.1 マルチプロセスで計算する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter10/01. マルチプロセスで計算する/10.1 マルチプロセスで計算する.ipynb -------------------------------------------------------------------------------- /Chapter10/01. マルチプロセスで計算する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter10/01. マルチプロセスで計算する/commands.txt -------------------------------------------------------------------------------- /Chapter10/02. リモートのJuliaプロセスと通信する/10.2 リモートのJuliaプロセスと通信する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter10/02. リモートのJuliaプロセスと通信する/10.2 リモートのJuliaプロセスと通信する.ipynb -------------------------------------------------------------------------------- /Chapter10/02. リモートのJuliaプロセスと通信する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter10/02. リモートのJuliaプロセスと通信する/commands.txt -------------------------------------------------------------------------------- /Chapter10/03. マルチスレッドで計算する/10.3 マルチスレッドで計算する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter10/03. マルチスレッドで計算する/10.3 マルチスレッドで計算する.ipynb -------------------------------------------------------------------------------- /Chapter10/03. マルチスレッドで計算する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter10/03. マルチスレッドで計算する/commands.txt -------------------------------------------------------------------------------- /Chapter10/04. 分散環境で計算する/10.4 分散環境で計算する.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter10/04. 分散環境で計算する/10.4 分散環境で計算する.ipynb -------------------------------------------------------------------------------- /Chapter10/04. 分散環境で計算する/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter10/04. 分散環境で計算する/commands.txt -------------------------------------------------------------------------------- /Chapter10/04. 分散環境で計算する/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter10/04. 分散環境で計算する/config -------------------------------------------------------------------------------- /Chapter10/04. 分散環境で計算する/machinefile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Chapter10/04. 分散環境で計算する/machinefile.txt -------------------------------------------------------------------------------- /Julia_Cookbook-Supplement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/Julia_Cookbook-Supplement.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/README.md -------------------------------------------------------------------------------- /README.md.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/README.md.org -------------------------------------------------------------------------------- /cookbookconf.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oreilly-japan/julia-programming-cookbook/HEAD/cookbookconf.jl --------------------------------------------------------------------------------