diff --git a/.github/workflows/test_Ch02.yml b/.github/workflows/test_Ch02.yml new file mode 100644 index 0000000..dfcce44 --- /dev/null +++ b/.github/workflows/test_Ch02.yml @@ -0,0 +1,40 @@ +# This is a basic workflow to help you get started with Actions + +name: Building Ch02 notebook + +# Controls when the workflow will run +on: + workflow_dispatch: + environment: + description: 'Environment to run tests against' + type: environment + required: true + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + - uses: actions/setup-python@v2 + with: + python-version: '3.10' + cache: 'pip' + + # Install + - name: Install dependencies + run: | + pip install -r requirements.txt + pip install ISLP jupyter + + # Runs a set of commands using the runners shell + - name: Build notebook for Ch02 (some errors, not really a test) + run: | + jupyter nbconvert --execute --inplace Ch02-statlearn-lab.ipynb --allow-errors + + diff --git a/.github/workflows/test_Ch03.yml b/.github/workflows/test_Ch03.yml new file mode 100644 index 0000000..d4022ce --- /dev/null +++ b/.github/workflows/test_Ch03.yml @@ -0,0 +1,40 @@ +# This is a basic workflow to help you get started with Actions + +name: Building Ch03 notebook + +# Controls when the workflow will run +on: + workflow_dispatch: + environment: + description: 'Environment to run tests against' + type: environment + required: true + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + - uses: actions/setup-python@v2 + with: + python-version: '3.10' + cache: 'pip' + + # Install + - name: Install dependencies + run: | + pip install -r requirements.txt + pip install ISLP jupyter + + # Runs a set of commands using the runners shell + - name: Build notebook for Ch03 (some errors, not really a test) + run: | + jupyter nbconvert --execute --inplace Ch03*ipynb + + diff --git a/.github/workflows/test_Ch04.yml b/.github/workflows/test_Ch04.yml new file mode 100644 index 0000000..b148d82 --- /dev/null +++ b/.github/workflows/test_Ch04.yml @@ -0,0 +1,40 @@ +# This is a basic workflow to help you get started with Actions + +name: Building Ch04 notebook + +# Controls when the workflow will run +on: + workflow_dispatch: + environment: + description: 'Environment to run tests against' + type: environment + required: true + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + - uses: actions/setup-python@v2 + with: + python-version: '3.10' + cache: 'pip' + + # Install + - name: Install dependencies + run: | + pip install -r requirements.txt + pip install ISLP jupyter + + # Runs a set of commands using the runners shell + - name: Build notebook for Ch04 (some errors, not really a test) + run: | + jupyter nbconvert --execute --inplace Ch04*ipynb + + diff --git a/.github/workflows/test_Ch05.yml b/.github/workflows/test_Ch05.yml new file mode 100644 index 0000000..2b01551 --- /dev/null +++ b/.github/workflows/test_Ch05.yml @@ -0,0 +1,40 @@ +# This is a basic workflow to help you get started with Actions + +name: Building Ch05 notebook + +# Controls when the workflow will run +on: + workflow_dispatch: + environment: + description: 'Environment to run tests against' + type: environment + required: true + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + - uses: actions/setup-python@v2 + with: + python-version: '3.10' + cache: 'pip' + + # Install + - name: Install dependencies + run: | + pip install -r requirements.txt + pip install ISLP jupyter + + # Runs a set of commands using the runners shell + - name: Build notebook for Ch05 (some errors, not really a test) + run: | + jupyter nbconvert --execute --inplace Ch05*ipynb + + diff --git a/.github/workflows/test_Ch06.yml b/.github/workflows/test_Ch06.yml new file mode 100644 index 0000000..3ed430c --- /dev/null +++ b/.github/workflows/test_Ch06.yml @@ -0,0 +1,40 @@ +# This is a basic workflow to help you get started with Actions + +name: Building Ch06 notebook + +# Controls when the workflow will run +on: + workflow_dispatch: + environment: + description: 'Environment to run tests against' + type: environment + required: true + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + - uses: actions/setup-python@v2 + with: + python-version: '3.10' + cache: 'pip' + + # Install + - name: Install dependencies + run: | + pip install -r requirements.txt + pip install ISLP jupyter + + # Runs a set of commands using the runners shell + - name: Build notebook for Ch06 (some errors, not really a test) + run: | + jupyter nbconvert --execute --inplace Ch06*ipynb + + diff --git a/.github/workflows/test_Ch07.yml b/.github/workflows/test_Ch07.yml new file mode 100644 index 0000000..d87d848 --- /dev/null +++ b/.github/workflows/test_Ch07.yml @@ -0,0 +1,40 @@ +# This is a basic workflow to help you get started with Actions + +name: Building Ch07 notebook + +# Controls when the workflow will run +on: + workflow_dispatch: + environment: + description: 'Environment to run tests against' + type: environment + required: true + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + - uses: actions/setup-python@v2 + with: + python-version: '3.10' + cache: 'pip' + + # Install + - name: Install dependencies + run: | + pip install -r requirements.txt + pip install ISLP jupyter + + # Runs a set of commands using the runners shell + - name: Build notebook for Ch07 (some errors, not really a test) + run: | + jupyter nbconvert --execute --inplace Ch07*ipynb + + diff --git a/.github/workflows/test_Ch08.yml b/.github/workflows/test_Ch08.yml new file mode 100644 index 0000000..2b7e77b --- /dev/null +++ b/.github/workflows/test_Ch08.yml @@ -0,0 +1,40 @@ +# This is a basic workflow to help you get started with Actions + +name: Building Ch08 notebook + +# Controls when the workflow will run +on: + workflow_dispatch: + environment: + description: 'Environment to run tests against' + type: environment + required: true + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + - uses: actions/setup-python@v2 + with: + python-version: '3.10' + cache: 'pip' + + # Install + - name: Install dependencies + run: | + pip install -r requirements.txt + pip install ISLP jupyter + + # Runs a set of commands using the runners shell + - name: Build notebook for Ch08 (some errors, not really a test) + run: | + jupyter nbconvert --execute --inplace Ch08*ipynb + + diff --git a/.github/workflows/test_Ch09.yml b/.github/workflows/test_Ch09.yml new file mode 100644 index 0000000..e88a6ff --- /dev/null +++ b/.github/workflows/test_Ch09.yml @@ -0,0 +1,40 @@ +# This is a basic workflow to help you get started with Actions + +name: Building Ch09 notebook + +# Controls when the workflow will run +on: + workflow_dispatch: + environment: + description: 'Environment to run tests against' + type: environment + required: true + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + - uses: actions/setup-python@v2 + with: + python-version: '3.10' + cache: 'pip' + + # Install + - name: Install dependencies + run: | + pip install -r requirements.txt + pip install ISLP jupyter + + # Runs a set of commands using the runners shell + - name: Build notebook for Ch09 (some errors, not really a test) + run: | + jupyter nbconvert --execute --inplace Ch09*ipynb + + diff --git a/.github/workflows/test_Ch10.yml b/.github/workflows/test_Ch10.yml new file mode 100644 index 0000000..ce97c12 --- /dev/null +++ b/.github/workflows/test_Ch10.yml @@ -0,0 +1,40 @@ +# This is a basic workflow to help you get started with Actions + +name: Building Ch10 notebook + +# Controls when the workflow will run +on: + workflow_dispatch: + environment: + description: 'Environment to run tests against' + type: environment + required: true + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + - uses: actions/setup-python@v2 + with: + python-version: '3.10' + cache: 'pip' + + # Install + - name: Install dependencies + run: | + pip install -r requirements.txt + pip install ISLP jupyter + + # Runs a set of commands using the runners shell + - name: Build notebook for Ch10 (some errors, not really a test) + run: | + jupyter nbconvert --execute --inplace Ch10*ipynb + + diff --git a/.github/workflows/test_Ch11.yml b/.github/workflows/test_Ch11.yml new file mode 100644 index 0000000..a2a4ee2 --- /dev/null +++ b/.github/workflows/test_Ch11.yml @@ -0,0 +1,40 @@ +# This is a basic workflow to help you get started with Actions + +name: Building Ch11 notebook + +# Controls when the workflow will run +on: + workflow_dispatch: + environment: + description: 'Environment to run tests against' + type: environment + required: true + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + - uses: actions/setup-python@v2 + with: + python-version: '3.10' + cache: 'pip' + + # Install + - name: Install dependencies + run: | + pip install -r requirements.txt + pip install ISLP jupyter + + # Runs a set of commands using the runners shell + - name: Build notebook for Ch11 (some errors, not really a test) + run: | + jupyter nbconvert --execute --inplace Ch11*ipynb + + diff --git a/.github/workflows/test_Ch12.yml b/.github/workflows/test_Ch12.yml new file mode 100644 index 0000000..f231523 --- /dev/null +++ b/.github/workflows/test_Ch12.yml @@ -0,0 +1,40 @@ +# This is a basic workflow to help you get started with Actions + +name: Building Ch12 notebook + +# Controls when the workflow will run +on: + workflow_dispatch: + environment: + description: 'Environment to run tests against' + type: environment + required: true + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + - uses: actions/setup-python@v2 + with: + python-version: '3.10' + cache: 'pip' + + # Install + - name: Install dependencies + run: | + pip install -r requirements.txt + pip install ISLP jupyter + + # Runs a set of commands using the runners shell + - name: Build notebook for Ch12 (some errors, not really a test) + run: | + jupyter nbconvert --execute --inplace Ch12*ipynb + + diff --git a/.github/workflows/test_Ch13.yml b/.github/workflows/test_Ch13.yml new file mode 100644 index 0000000..77ff83d --- /dev/null +++ b/.github/workflows/test_Ch13.yml @@ -0,0 +1,40 @@ +# This is a basic workflow to help you get started with Actions + +name: Building Ch13 notebook + +# Controls when the workflow will run +on: + workflow_dispatch: + environment: + description: 'Environment to run tests against' + type: environment + required: true + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + - uses: actions/setup-python@v2 + with: + python-version: '3.10' + cache: 'pip' + + # Install + - name: Install dependencies + run: | + pip install -r requirements.txt + pip install ISLP jupyter + + # Runs a set of commands using the runners shell + - name: Build notebook for Ch13 (some errors, not really a test) + run: | + jupyter nbconvert --execute --inplace Ch13*ipynb + + diff --git a/Ch02-statlearn-lab.ipynb b/Ch02-statlearn-lab.ipynb index 0a99b26..f137f1c 100644 --- a/Ch02-statlearn-lab.ipynb +++ b/Ch02-statlearn-lab.ipynb @@ -102,10 +102,10 @@ "id": "9e8aa21f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.006830Z", - "iopub.status.busy": "2023-08-21T02:30:50.006669Z", - "iopub.status.idle": "2023-08-21T02:30:50.012514Z", - "shell.execute_reply": "2023-08-21T02:30:50.012071Z" + "iopub.execute_input": "2023-08-21T03:36:04.654555Z", + "iopub.status.busy": "2023-08-21T03:36:04.654242Z", + "iopub.status.idle": "2023-08-21T03:36:04.664431Z", + "shell.execute_reply": "2023-08-21T03:36:04.663990Z" } }, "outputs": [ @@ -135,10 +135,10 @@ "id": "d62ec119", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.014650Z", - "iopub.status.busy": "2023-08-21T02:30:50.014510Z", - "iopub.status.idle": "2023-08-21T02:30:50.037036Z", - "shell.execute_reply": "2023-08-21T02:30:50.036708Z" + "iopub.execute_input": "2023-08-21T03:36:04.666908Z", + "iopub.status.busy": "2023-08-21T03:36:04.666727Z", + "iopub.status.idle": "2023-08-21T03:36:04.693658Z", + "shell.execute_reply": "2023-08-21T03:36:04.693389Z" } }, "outputs": [], @@ -160,10 +160,10 @@ "id": "c64e9f4d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.039073Z", - "iopub.status.busy": "2023-08-21T02:30:50.038937Z", - "iopub.status.idle": "2023-08-21T02:30:50.042687Z", - "shell.execute_reply": "2023-08-21T02:30:50.042283Z" + "iopub.execute_input": "2023-08-21T03:36:04.695168Z", + "iopub.status.busy": "2023-08-21T03:36:04.695071Z", + "iopub.status.idle": "2023-08-21T03:36:04.697996Z", + "shell.execute_reply": "2023-08-21T03:36:04.697736Z" } }, "outputs": [ @@ -200,10 +200,10 @@ "id": "9abccc1f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.044384Z", - "iopub.status.busy": "2023-08-21T02:30:50.044255Z", - "iopub.status.idle": "2023-08-21T02:30:50.046837Z", - "shell.execute_reply": "2023-08-21T02:30:50.046505Z" + "iopub.execute_input": "2023-08-21T03:36:04.699502Z", + "iopub.status.busy": "2023-08-21T03:36:04.699420Z", + "iopub.status.idle": "2023-08-21T03:36:04.701419Z", + "shell.execute_reply": "2023-08-21T03:36:04.701183Z" } }, "outputs": [ @@ -249,10 +249,10 @@ "id": "802ca33c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.048710Z", - "iopub.status.busy": "2023-08-21T02:30:50.048580Z", - "iopub.status.idle": "2023-08-21T02:30:50.050939Z", - "shell.execute_reply": "2023-08-21T02:30:50.050571Z" + "iopub.execute_input": "2023-08-21T03:36:04.702877Z", + "iopub.status.busy": "2023-08-21T03:36:04.702786Z", + "iopub.status.idle": "2023-08-21T03:36:04.704849Z", + "shell.execute_reply": "2023-08-21T03:36:04.704596Z" } }, "outputs": [ @@ -290,10 +290,10 @@ "id": "a8c72744", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.052919Z", - "iopub.status.busy": "2023-08-21T02:30:50.052791Z", - "iopub.status.idle": "2023-08-21T02:30:50.055246Z", - "shell.execute_reply": "2023-08-21T02:30:50.054868Z" + "iopub.execute_input": "2023-08-21T03:36:04.706312Z", + "iopub.status.busy": "2023-08-21T03:36:04.706207Z", + "iopub.status.idle": "2023-08-21T03:36:04.708359Z", + "shell.execute_reply": "2023-08-21T03:36:04.708116Z" } }, "outputs": [ @@ -364,10 +364,10 @@ "id": "f1c7d1db", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.057236Z", - "iopub.status.busy": "2023-08-21T02:30:50.057113Z", - "iopub.status.idle": "2023-08-21T02:30:50.139977Z", - "shell.execute_reply": "2023-08-21T02:30:50.137735Z" + "iopub.execute_input": "2023-08-21T03:36:04.709873Z", + "iopub.status.busy": "2023-08-21T03:36:04.709781Z", + "iopub.status.idle": "2023-08-21T03:36:04.767425Z", + "shell.execute_reply": "2023-08-21T03:36:04.766663Z" }, "lines_to_next_cell": 0 }, @@ -400,10 +400,10 @@ "id": "e2ea2bfd", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.147531Z", - "iopub.status.busy": "2023-08-21T02:30:50.146143Z", - "iopub.status.idle": "2023-08-21T02:30:50.152633Z", - "shell.execute_reply": "2023-08-21T02:30:50.151582Z" + "iopub.execute_input": "2023-08-21T03:36:04.772015Z", + "iopub.status.busy": "2023-08-21T03:36:04.771631Z", + "iopub.status.idle": "2023-08-21T03:36:04.777911Z", + "shell.execute_reply": "2023-08-21T03:36:04.777302Z" }, "lines_to_next_cell": 0 }, @@ -439,10 +439,10 @@ "id": "59fbf9fd", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.158172Z", - "iopub.status.busy": "2023-08-21T02:30:50.157789Z", - "iopub.status.idle": "2023-08-21T02:30:50.165288Z", - "shell.execute_reply": "2023-08-21T02:30:50.163928Z" + "iopub.execute_input": "2023-08-21T03:36:04.781791Z", + "iopub.status.busy": "2023-08-21T03:36:04.781430Z", + "iopub.status.idle": "2023-08-21T03:36:04.788256Z", + "shell.execute_reply": "2023-08-21T03:36:04.787586Z" }, "lines_to_next_cell": 0 }, @@ -486,10 +486,10 @@ "id": "2279437e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.169832Z", - "iopub.status.busy": "2023-08-21T02:30:50.169269Z", - "iopub.status.idle": "2023-08-21T02:30:50.179794Z", - "shell.execute_reply": "2023-08-21T02:30:50.177395Z" + "iopub.execute_input": "2023-08-21T03:36:04.792995Z", + "iopub.status.busy": "2023-08-21T03:36:04.792549Z", + "iopub.status.idle": "2023-08-21T03:36:04.800387Z", + "shell.execute_reply": "2023-08-21T03:36:04.799738Z" }, "lines_to_next_cell": 0 }, @@ -537,10 +537,10 @@ "id": "75bf1b1e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.186343Z", - "iopub.status.busy": "2023-08-21T02:30:50.185842Z", - "iopub.status.idle": "2023-08-21T02:30:50.192379Z", - "shell.execute_reply": "2023-08-21T02:30:50.190824Z" + "iopub.execute_input": "2023-08-21T03:36:04.804503Z", + "iopub.status.busy": "2023-08-21T03:36:04.804231Z", + "iopub.status.idle": "2023-08-21T03:36:04.810136Z", + "shell.execute_reply": "2023-08-21T03:36:04.809353Z" } }, "outputs": [ @@ -575,10 +575,10 @@ "id": "58292240", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.201648Z", - "iopub.status.busy": "2023-08-21T02:30:50.201225Z", - "iopub.status.idle": "2023-08-21T02:30:50.207481Z", - "shell.execute_reply": "2023-08-21T02:30:50.206847Z" + "iopub.execute_input": "2023-08-21T03:36:04.813981Z", + "iopub.status.busy": "2023-08-21T03:36:04.813417Z", + "iopub.status.idle": "2023-08-21T03:36:04.819511Z", + "shell.execute_reply": "2023-08-21T03:36:04.818936Z" }, "lines_to_next_cell": 0 }, @@ -615,10 +615,10 @@ "id": "fc5fff57", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.213702Z", - "iopub.status.busy": "2023-08-21T02:30:50.213443Z", - "iopub.status.idle": "2023-08-21T02:30:50.222030Z", - "shell.execute_reply": "2023-08-21T02:30:50.220707Z" + "iopub.execute_input": "2023-08-21T03:36:04.823519Z", + "iopub.status.busy": "2023-08-21T03:36:04.823222Z", + "iopub.status.idle": "2023-08-21T03:36:04.829861Z", + "shell.execute_reply": "2023-08-21T03:36:04.829223Z" }, "lines_to_next_cell": 2 }, @@ -654,10 +654,10 @@ "id": "762562a6", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.234104Z", - "iopub.status.busy": "2023-08-21T02:30:50.231808Z", - "iopub.status.idle": "2023-08-21T02:30:50.240454Z", - "shell.execute_reply": "2023-08-21T02:30:50.238805Z" + "iopub.execute_input": "2023-08-21T03:36:04.833747Z", + "iopub.status.busy": "2023-08-21T03:36:04.833468Z", + "iopub.status.idle": "2023-08-21T03:36:04.838421Z", + "shell.execute_reply": "2023-08-21T03:36:04.837747Z" }, "lines_to_next_cell": 0 }, @@ -680,10 +680,10 @@ "id": "66d2b82a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.258586Z", - "iopub.status.busy": "2023-08-21T02:30:50.258302Z", - "iopub.status.idle": "2023-08-21T02:30:50.266396Z", - "shell.execute_reply": "2023-08-21T02:30:50.264847Z" + "iopub.execute_input": "2023-08-21T03:36:04.842127Z", + "iopub.status.busy": "2023-08-21T03:36:04.841891Z", + "iopub.status.idle": "2023-08-21T03:36:04.848885Z", + "shell.execute_reply": "2023-08-21T03:36:04.848125Z" }, "lines_to_next_cell": 2 }, @@ -718,10 +718,10 @@ "id": "89881402", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.276010Z", - "iopub.status.busy": "2023-08-21T02:30:50.275747Z", - "iopub.status.idle": "2023-08-21T02:30:50.282746Z", - "shell.execute_reply": "2023-08-21T02:30:50.281551Z" + "iopub.execute_input": "2023-08-21T03:36:04.853039Z", + "iopub.status.busy": "2023-08-21T03:36:04.852643Z", + "iopub.status.idle": "2023-08-21T03:36:04.859072Z", + "shell.execute_reply": "2023-08-21T03:36:04.858149Z" }, "lines_to_next_cell": 2 }, @@ -761,10 +761,10 @@ "id": "0572d3f6", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.289721Z", - "iopub.status.busy": "2023-08-21T02:30:50.289153Z", - "iopub.status.idle": "2023-08-21T02:30:50.296949Z", - "shell.execute_reply": "2023-08-21T02:30:50.296137Z" + "iopub.execute_input": "2023-08-21T03:36:04.863011Z", + "iopub.status.busy": "2023-08-21T03:36:04.862610Z", + "iopub.status.idle": "2023-08-21T03:36:04.869722Z", + "shell.execute_reply": "2023-08-21T03:36:04.869078Z" }, "lines_to_next_cell": 0 }, @@ -799,10 +799,10 @@ "id": "33b10a6f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.302890Z", - "iopub.status.busy": "2023-08-21T02:30:50.302062Z", - "iopub.status.idle": "2023-08-21T02:30:50.309355Z", - "shell.execute_reply": "2023-08-21T02:30:50.308370Z" + "iopub.execute_input": "2023-08-21T03:36:04.874228Z", + "iopub.status.busy": "2023-08-21T03:36:04.873632Z", + "iopub.status.idle": "2023-08-21T03:36:04.879222Z", + "shell.execute_reply": "2023-08-21T03:36:04.878606Z" }, "lines_to_next_cell": 0 }, @@ -845,10 +845,10 @@ "id": "a32716db", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.318443Z", - "iopub.status.busy": "2023-08-21T02:30:50.318257Z", - "iopub.status.idle": "2023-08-21T02:30:50.323761Z", - "shell.execute_reply": "2023-08-21T02:30:50.322744Z" + "iopub.execute_input": "2023-08-21T03:36:04.882833Z", + "iopub.status.busy": "2023-08-21T03:36:04.882354Z", + "iopub.status.idle": "2023-08-21T03:36:04.887384Z", + "shell.execute_reply": "2023-08-21T03:36:04.886127Z" } }, "outputs": [ @@ -896,10 +896,10 @@ "id": "3db6e1cf", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.334724Z", - "iopub.status.busy": "2023-08-21T02:30:50.334410Z", - "iopub.status.idle": "2023-08-21T02:30:50.338378Z", - "shell.execute_reply": "2023-08-21T02:30:50.338028Z" + "iopub.execute_input": "2023-08-21T03:36:04.890861Z", + "iopub.status.busy": "2023-08-21T03:36:04.890532Z", + "iopub.status.idle": "2023-08-21T03:36:04.894815Z", + "shell.execute_reply": "2023-08-21T03:36:04.894149Z" }, "lines_to_next_cell": 0 }, @@ -934,10 +934,10 @@ "id": "e15c753f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.340165Z", - "iopub.status.busy": "2023-08-21T02:30:50.340074Z", - "iopub.status.idle": "2023-08-21T02:30:50.342590Z", - "shell.execute_reply": "2023-08-21T02:30:50.342221Z" + "iopub.execute_input": "2023-08-21T03:36:04.898049Z", + "iopub.status.busy": "2023-08-21T03:36:04.897796Z", + "iopub.status.idle": "2023-08-21T03:36:04.902137Z", + "shell.execute_reply": "2023-08-21T03:36:04.901538Z" }, "lines_to_next_cell": 0 }, @@ -975,10 +975,10 @@ "id": "91c6e7d8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.344326Z", - "iopub.status.busy": "2023-08-21T02:30:50.344207Z", - "iopub.status.idle": "2023-08-21T02:30:50.346683Z", - "shell.execute_reply": "2023-08-21T02:30:50.346268Z" + "iopub.execute_input": "2023-08-21T03:36:04.905358Z", + "iopub.status.busy": "2023-08-21T03:36:04.905148Z", + "iopub.status.idle": "2023-08-21T03:36:04.910143Z", + "shell.execute_reply": "2023-08-21T03:36:04.909500Z" } }, "outputs": [ @@ -1033,10 +1033,10 @@ "id": "59d95dce", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.348719Z", - "iopub.status.busy": "2023-08-21T02:30:50.348588Z", - "iopub.status.idle": "2023-08-21T02:30:50.475469Z", - "shell.execute_reply": "2023-08-21T02:30:50.475072Z" + "iopub.execute_input": "2023-08-21T03:36:04.913411Z", + "iopub.status.busy": "2023-08-21T03:36:04.912985Z", + "iopub.status.idle": "2023-08-21T03:36:05.037046Z", + "shell.execute_reply": "2023-08-21T03:36:05.036755Z" }, "lines_to_next_cell": 2 }, @@ -1073,10 +1073,10 @@ "id": "a6fde9af", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.477504Z", - "iopub.status.busy": "2023-08-21T02:30:50.477351Z", - "iopub.status.idle": "2023-08-21T02:30:50.480282Z", - "shell.execute_reply": "2023-08-21T02:30:50.479934Z" + "iopub.execute_input": "2023-08-21T03:36:05.038645Z", + "iopub.status.busy": "2023-08-21T03:36:05.038536Z", + "iopub.status.idle": "2023-08-21T03:36:05.040823Z", + "shell.execute_reply": "2023-08-21T03:36:05.040589Z" } }, "outputs": [ @@ -1117,10 +1117,10 @@ "id": "fadb6b45", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.482380Z", - "iopub.status.busy": "2023-08-21T02:30:50.482050Z", - "iopub.status.idle": "2023-08-21T02:30:50.484844Z", - "shell.execute_reply": "2023-08-21T02:30:50.484499Z" + "iopub.execute_input": "2023-08-21T03:36:05.042203Z", + "iopub.status.busy": "2023-08-21T03:36:05.042112Z", + "iopub.status.idle": "2023-08-21T03:36:05.044185Z", + "shell.execute_reply": "2023-08-21T03:36:05.043940Z" } }, "outputs": [ @@ -1154,10 +1154,10 @@ "id": "fda3134b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.486624Z", - "iopub.status.busy": "2023-08-21T02:30:50.486495Z", - "iopub.status.idle": "2023-08-21T02:30:50.489228Z", - "shell.execute_reply": "2023-08-21T02:30:50.488779Z" + "iopub.execute_input": "2023-08-21T03:36:05.045709Z", + "iopub.status.busy": "2023-08-21T03:36:05.045601Z", + "iopub.status.idle": "2023-08-21T03:36:05.047665Z", + "shell.execute_reply": "2023-08-21T03:36:05.047412Z" } }, "outputs": [ @@ -1190,10 +1190,10 @@ "id": "52eb335b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.491134Z", - "iopub.status.busy": "2023-08-21T02:30:50.491017Z", - "iopub.status.idle": "2023-08-21T02:30:50.493502Z", - "shell.execute_reply": "2023-08-21T02:30:50.493215Z" + "iopub.execute_input": "2023-08-21T03:36:05.049290Z", + "iopub.status.busy": "2023-08-21T03:36:05.049191Z", + "iopub.status.idle": "2023-08-21T03:36:05.051249Z", + "shell.execute_reply": "2023-08-21T03:36:05.051004Z" }, "lines_to_next_cell": 2 }, @@ -1237,26 +1237,26 @@ "id": "ac5e9d29", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.495119Z", - "iopub.status.busy": "2023-08-21T02:30:50.494978Z", - "iopub.status.idle": "2023-08-21T02:30:50.497930Z", - "shell.execute_reply": "2023-08-21T02:30:50.497509Z" + "iopub.execute_input": "2023-08-21T03:36:05.052622Z", + "iopub.status.busy": "2023-08-21T03:36:05.052529Z", + "iopub.status.idle": "2023-08-21T03:36:05.054818Z", + "shell.execute_reply": "2023-08-21T03:36:05.054569Z" } }, "outputs": [ { "data": { "text/plain": [ - "array([ 2.19545458, -1.12223315, 0.95847166, 0.46122203, 1.84897705,\n", - " -1.04047853, 0.83676339, -2.19601245, 0.39698389, 0.04758151,\n", - " 1.34792486, 0.51216256, -1.63880563, -0.26767825, 0.36112938,\n", - " -1.42339276, 0.13806048, -0.38045245, -0.13536739, 0.48214194,\n", - " -0.25054293, 0.13424863, 0.04936946, -1.27853449, -0.4209532 ,\n", - " 0.08910682, 0.18748123, -1.31285374, -1.08644178, 1.49900139,\n", - " 0.40544918, 1.20019396, -0.51036262, 0.23765685, 1.47352058,\n", - " -0.07829232, 0.24262252, 0.37759976, -0.57005929, -1.32513296,\n", - " -0.21046393, -1.25442347, -0.43034269, -0.11200235, 0.79479638,\n", - " 0.33250308, 0.06516935, 0.60136446, 0.20490462, -2.49918682])" + "array([-0.97992307, 0.29561095, 0.60481929, -0.20482365, -1.01517527,\n", + " 2.76594674, -0.65748447, 1.27396181, -1.01573869, 1.37373688,\n", + " 0.93524901, -2.41971622, -0.58080017, 0.13777341, 1.35936356,\n", + " 0.61747629, 0.82550921, 0.7943598 , 1.0905082 , 1.80820045,\n", + " -1.31320321, 2.0651966 , -0.78632522, -2.01068042, -1.36562571,\n", + " 1.43466837, -0.16848093, -1.57211786, 0.49888498, -1.86050966,\n", + " 1.08743609, 0.53059599, 0.02172848, -0.41808062, 1.88343414,\n", + " 0.09112977, 1.23489568, 0.53207714, -1.62670383, 1.29859234,\n", + " 0.30311344, 1.01143392, -1.64596169, 1.58876421, -1.85189683,\n", + " -0.53929878, -2.19895144, -0.36691225, 1.03621761, 0.25278481])" ] }, "execution_count": 28, @@ -1283,10 +1283,10 @@ "id": "55fa905e", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.499959Z", - "iopub.status.busy": "2023-08-21T02:30:50.499825Z", - "iopub.status.idle": "2023-08-21T02:30:50.501900Z", - "shell.execute_reply": "2023-08-21T02:30:50.501456Z" + "iopub.execute_input": "2023-08-21T03:36:05.056219Z", + "iopub.status.busy": "2023-08-21T03:36:05.056124Z", + "iopub.status.idle": "2023-08-21T03:36:05.057790Z", + "shell.execute_reply": "2023-08-21T03:36:05.057543Z" }, "lines_to_next_cell": 0 }, @@ -1310,18 +1310,18 @@ "id": "fde0dc19", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.503809Z", - "iopub.status.busy": "2023-08-21T02:30:50.503642Z", - "iopub.status.idle": "2023-08-21T02:30:50.506488Z", - "shell.execute_reply": "2023-08-21T02:30:50.506173Z" + "iopub.execute_input": "2023-08-21T03:36:05.059163Z", + "iopub.status.busy": "2023-08-21T03:36:05.059091Z", + "iopub.status.idle": "2023-08-21T03:36:05.061351Z", + "shell.execute_reply": "2023-08-21T03:36:05.061105Z" } }, "outputs": [ { "data": { "text/plain": [ - "array([[1. , 0.71287035],\n", - " [0.71287035, 1. ]])" + "array([[1. , 0.66045794],\n", + " [0.66045794, 1. ]])" ] }, "execution_count": 30, @@ -1350,10 +1350,10 @@ "id": "5099cf54", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.508266Z", - "iopub.status.busy": "2023-08-21T02:30:50.508129Z", - "iopub.status.idle": "2023-08-21T02:30:50.510286Z", - "shell.execute_reply": "2023-08-21T02:30:50.510024Z" + "iopub.execute_input": "2023-08-21T03:36:05.062721Z", + "iopub.status.busy": "2023-08-21T03:36:05.062630Z", + "iopub.status.idle": "2023-08-21T03:36:05.064539Z", + "shell.execute_reply": "2023-08-21T03:36:05.064300Z" }, "lines_to_next_cell": 0 }, @@ -1362,8 +1362,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "[-1.87653343 5.36922939]\n", - "[0.09491232 4.0715443 ]\n" + "[-9.63514647 -0.12742473]\n", + "[0.85490033 0.05488893]\n" ] } ], @@ -1401,10 +1401,10 @@ "id": "9d8074e5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.511982Z", - "iopub.status.busy": "2023-08-21T02:30:50.511863Z", - "iopub.status.idle": "2023-08-21T02:30:50.514616Z", - "shell.execute_reply": "2023-08-21T02:30:50.514196Z" + "iopub.execute_input": "2023-08-21T03:36:05.065999Z", + "iopub.status.busy": "2023-08-21T03:36:05.065912Z", + "iopub.status.idle": "2023-08-21T03:36:05.068039Z", + "shell.execute_reply": "2023-08-21T03:36:05.067820Z" } }, "outputs": [ @@ -1447,10 +1447,10 @@ "id": "e98472df", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.516571Z", - "iopub.status.busy": "2023-08-21T02:30:50.516443Z", - "iopub.status.idle": "2023-08-21T02:30:50.519319Z", - "shell.execute_reply": "2023-08-21T02:30:50.519062Z" + "iopub.execute_input": "2023-08-21T03:36:05.069438Z", + "iopub.status.busy": "2023-08-21T03:36:05.069347Z", + "iopub.status.idle": "2023-08-21T03:36:05.071564Z", + "shell.execute_reply": "2023-08-21T03:36:05.071324Z" }, "lines_to_next_cell": 0 }, @@ -1486,10 +1486,10 @@ "id": "8c2784fd", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.521216Z", - "iopub.status.busy": "2023-08-21T02:30:50.521078Z", - "iopub.status.idle": "2023-08-21T02:30:50.523819Z", - "shell.execute_reply": "2023-08-21T02:30:50.523437Z" + "iopub.execute_input": "2023-08-21T03:36:05.072967Z", + "iopub.status.busy": "2023-08-21T03:36:05.072873Z", + "iopub.status.idle": "2023-08-21T03:36:05.075053Z", + "shell.execute_reply": "2023-08-21T03:36:05.074833Z" }, "lines_to_next_cell": 2 }, @@ -1524,10 +1524,10 @@ "id": "7e7205f2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.525631Z", - "iopub.status.busy": "2023-08-21T02:30:50.525508Z", - "iopub.status.idle": "2023-08-21T02:30:50.528164Z", - "shell.execute_reply": "2023-08-21T02:30:50.527790Z" + "iopub.execute_input": "2023-08-21T03:36:05.076473Z", + "iopub.status.busy": "2023-08-21T03:36:05.076373Z", + "iopub.status.idle": "2023-08-21T03:36:05.078474Z", + "shell.execute_reply": "2023-08-21T03:36:05.078224Z" } }, "outputs": [ @@ -1561,10 +1561,10 @@ "id": "fce06849", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.529819Z", - "iopub.status.busy": "2023-08-21T02:30:50.529694Z", - "iopub.status.idle": "2023-08-21T02:30:50.532249Z", - "shell.execute_reply": "2023-08-21T02:30:50.531905Z" + "iopub.execute_input": "2023-08-21T03:36:05.079856Z", + "iopub.status.busy": "2023-08-21T03:36:05.079755Z", + "iopub.status.idle": "2023-08-21T03:36:05.081961Z", + "shell.execute_reply": "2023-08-21T03:36:05.081709Z" } }, "outputs": [ @@ -1607,10 +1607,10 @@ "id": "1403ff7a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.533992Z", - "iopub.status.busy": "2023-08-21T02:30:50.533874Z", - "iopub.status.idle": "2023-08-21T02:30:50.536260Z", - "shell.execute_reply": "2023-08-21T02:30:50.535886Z" + "iopub.execute_input": "2023-08-21T03:36:05.083361Z", + "iopub.status.busy": "2023-08-21T03:36:05.083273Z", + "iopub.status.idle": "2023-08-21T03:36:05.085366Z", + "shell.execute_reply": "2023-08-21T03:36:05.085112Z" } }, "outputs": [ @@ -1643,10 +1643,10 @@ "id": "7e9255ba", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.538076Z", - "iopub.status.busy": "2023-08-21T02:30:50.537954Z", - "iopub.status.idle": "2023-08-21T02:30:50.540507Z", - "shell.execute_reply": "2023-08-21T02:30:50.540123Z" + "iopub.execute_input": "2023-08-21T03:36:05.086730Z", + "iopub.status.busy": "2023-08-21T03:36:05.086636Z", + "iopub.status.idle": "2023-08-21T03:36:05.088698Z", + "shell.execute_reply": "2023-08-21T03:36:05.088470Z" }, "lines_to_next_cell": 0 }, @@ -1713,10 +1713,10 @@ "id": "8236e5f7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.542570Z", - "iopub.status.busy": "2023-08-21T02:30:50.542445Z", - "iopub.status.idle": "2023-08-21T02:30:50.874657Z", - "shell.execute_reply": "2023-08-21T02:30:50.874194Z" + "iopub.execute_input": "2023-08-21T03:36:05.090105Z", + "iopub.status.busy": "2023-08-21T03:36:05.090015Z", + "iopub.status.idle": "2023-08-21T03:36:05.390499Z", + "shell.execute_reply": "2023-08-21T03:36:05.390143Z" } }, "outputs": [ @@ -1755,10 +1755,10 @@ "id": "ddc9ed4f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.877137Z", - "iopub.status.busy": "2023-08-21T02:30:50.876928Z", - "iopub.status.idle": "2023-08-21T02:30:50.956590Z", - "shell.execute_reply": "2023-08-21T02:30:50.956301Z" + "iopub.execute_input": "2023-08-21T03:36:05.392242Z", + "iopub.status.busy": "2023-08-21T03:36:05.392127Z", + "iopub.status.idle": "2023-08-21T03:36:05.464507Z", + "shell.execute_reply": "2023-08-21T03:36:05.464208Z" } }, "outputs": [ @@ -1793,10 +1793,10 @@ "id": "c64ed600", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:50.958481Z", - "iopub.status.busy": "2023-08-21T02:30:50.958357Z", - "iopub.status.idle": "2023-08-21T02:30:51.038344Z", - "shell.execute_reply": "2023-08-21T02:30:51.037979Z" + "iopub.execute_input": "2023-08-21T03:36:05.466274Z", + "iopub.status.busy": "2023-08-21T03:36:05.466157Z", + "iopub.status.idle": "2023-08-21T03:36:05.540801Z", + "shell.execute_reply": "2023-08-21T03:36:05.540543Z" }, "lines_to_next_cell": 0 }, @@ -1841,10 +1841,10 @@ "id": "bc6245e2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:51.040710Z", - "iopub.status.busy": "2023-08-21T02:30:51.040587Z", - "iopub.status.idle": "2023-08-21T02:30:51.134964Z", - "shell.execute_reply": "2023-08-21T02:30:51.132456Z" + "iopub.execute_input": "2023-08-21T03:36:05.542497Z", + "iopub.status.busy": "2023-08-21T03:36:05.542378Z", + "iopub.status.idle": "2023-08-21T03:36:05.621061Z", + "shell.execute_reply": "2023-08-21T03:36:05.620765Z" } }, "outputs": [ @@ -1881,10 +1881,10 @@ "id": "2454807b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:51.151101Z", - "iopub.status.busy": "2023-08-21T02:30:51.149919Z", - "iopub.status.idle": "2023-08-21T02:30:51.282995Z", - "shell.execute_reply": "2023-08-21T02:30:51.282645Z" + "iopub.execute_input": "2023-08-21T03:36:05.622738Z", + "iopub.status.busy": "2023-08-21T03:36:05.622624Z", + "iopub.status.idle": "2023-08-21T03:36:05.700853Z", + "shell.execute_reply": "2023-08-21T03:36:05.700564Z" }, "lines_to_next_cell": 0 }, @@ -1892,7 +1892,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 43, @@ -1944,10 +1944,10 @@ "id": "1e18a793", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:51.284915Z", - "iopub.status.busy": "2023-08-21T02:30:51.284785Z", - "iopub.status.idle": "2023-08-21T02:30:51.391963Z", - "shell.execute_reply": "2023-08-21T02:30:51.391488Z" + "iopub.execute_input": "2023-08-21T03:36:05.702667Z", + "iopub.status.busy": "2023-08-21T03:36:05.702545Z", + "iopub.status.idle": "2023-08-21T03:36:05.797850Z", + "shell.execute_reply": "2023-08-21T03:36:05.797545Z" } }, "outputs": [ @@ -1985,10 +1985,10 @@ "id": "aec3f009", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:51.394098Z", - "iopub.status.busy": "2023-08-21T02:30:51.393919Z", - "iopub.status.idle": "2023-08-21T02:30:51.559529Z", - "shell.execute_reply": "2023-08-21T02:30:51.559203Z" + "iopub.execute_input": "2023-08-21T03:36:05.799658Z", + "iopub.status.busy": "2023-08-21T03:36:05.799529Z", + "iopub.status.idle": "2023-08-21T03:36:05.861021Z", + "shell.execute_reply": "2023-08-21T03:36:05.860749Z" }, "lines_to_next_cell": 0 }, @@ -2039,10 +2039,10 @@ "id": "2cbc7fd4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:51.561597Z", - "iopub.status.busy": "2023-08-21T02:30:51.561439Z", - "iopub.status.idle": "2023-08-21T02:30:51.881758Z", - "shell.execute_reply": "2023-08-21T02:30:51.881426Z" + "iopub.execute_input": "2023-08-21T03:36:05.862740Z", + "iopub.status.busy": "2023-08-21T03:36:05.862621Z", + "iopub.status.idle": "2023-08-21T03:36:06.143924Z", + "shell.execute_reply": "2023-08-21T03:36:06.143646Z" }, "lines_to_next_cell": 0 }, @@ -2079,10 +2079,10 @@ "id": "702f80d9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:51.884225Z", - "iopub.status.busy": "2023-08-21T02:30:51.884077Z", - "iopub.status.idle": "2023-08-21T02:30:52.087336Z", - "shell.execute_reply": "2023-08-21T02:30:52.086823Z" + "iopub.execute_input": "2023-08-21T03:36:06.145683Z", + "iopub.status.busy": "2023-08-21T03:36:06.145574Z", + "iopub.status.idle": "2023-08-21T03:36:06.326301Z", + "shell.execute_reply": "2023-08-21T03:36:06.326007Z" }, "lines_to_next_cell": 0 }, @@ -2132,10 +2132,10 @@ "id": "5493d229", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:52.089376Z", - "iopub.status.busy": "2023-08-21T02:30:52.089230Z", - "iopub.status.idle": "2023-08-21T02:30:53.204823Z", - "shell.execute_reply": "2023-08-21T02:30:53.204456Z" + "iopub.execute_input": "2023-08-21T03:36:06.327958Z", + "iopub.status.busy": "2023-08-21T03:36:06.327847Z", + "iopub.status.idle": "2023-08-21T03:36:07.432805Z", + "shell.execute_reply": "2023-08-21T03:36:07.432429Z" }, "lines_to_next_cell": 2 }, @@ -2159,10 +2159,10 @@ "id": "bd07af12", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.206962Z", - "iopub.status.busy": "2023-08-21T02:30:53.206769Z", - "iopub.status.idle": "2023-08-21T02:30:53.457239Z", - "shell.execute_reply": "2023-08-21T02:30:53.456817Z" + "iopub.execute_input": "2023-08-21T03:36:07.434785Z", + "iopub.status.busy": "2023-08-21T03:36:07.434614Z", + "iopub.status.idle": "2023-08-21T03:36:07.663475Z", + "shell.execute_reply": "2023-08-21T03:36:07.663165Z" } }, "outputs": [ @@ -2209,10 +2209,10 @@ "id": "01019508", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.459284Z", - "iopub.status.busy": "2023-08-21T02:30:53.459137Z", - "iopub.status.idle": "2023-08-21T02:30:53.566977Z", - "shell.execute_reply": "2023-08-21T02:30:53.566630Z" + "iopub.execute_input": "2023-08-21T03:36:07.665255Z", + "iopub.status.busy": "2023-08-21T03:36:07.665128Z", + "iopub.status.idle": "2023-08-21T03:36:07.766569Z", + "shell.execute_reply": "2023-08-21T03:36:07.766244Z" }, "lines_to_next_cell": 0 }, @@ -2250,10 +2250,10 @@ "id": "7d08992f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.568782Z", - "iopub.status.busy": "2023-08-21T02:30:53.568655Z", - "iopub.status.idle": "2023-08-21T02:30:53.705311Z", - "shell.execute_reply": "2023-08-21T02:30:53.704960Z" + "iopub.execute_input": "2023-08-21T03:36:07.768244Z", + "iopub.status.busy": "2023-08-21T03:36:07.768130Z", + "iopub.status.idle": "2023-08-21T03:36:07.893027Z", + "shell.execute_reply": "2023-08-21T03:36:07.892660Z" }, "lines_to_next_cell": 0 }, @@ -2296,10 +2296,10 @@ "id": "1f89d704", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.707932Z", - "iopub.status.busy": "2023-08-21T02:30:53.707762Z", - "iopub.status.idle": "2023-08-21T02:30:53.817487Z", - "shell.execute_reply": "2023-08-21T02:30:53.816855Z" + "iopub.execute_input": "2023-08-21T03:36:07.894802Z", + "iopub.status.busy": "2023-08-21T03:36:07.894695Z", + "iopub.status.idle": "2023-08-21T03:36:07.995202Z", + "shell.execute_reply": "2023-08-21T03:36:07.994863Z" }, "lines_to_next_cell": 2 }, @@ -2344,10 +2344,10 @@ "id": "cd971131", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.819476Z", - "iopub.status.busy": "2023-08-21T02:30:53.819332Z", - "iopub.status.idle": "2023-08-21T02:30:53.822437Z", - "shell.execute_reply": "2023-08-21T02:30:53.822105Z" + "iopub.execute_input": "2023-08-21T03:36:07.996961Z", + "iopub.status.busy": "2023-08-21T03:36:07.996836Z", + "iopub.status.idle": "2023-08-21T03:36:07.999447Z", + "shell.execute_reply": "2023-08-21T03:36:07.999154Z" }, "lines_to_next_cell": 2 }, @@ -2384,10 +2384,10 @@ "id": "aa630d16", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.824422Z", - "iopub.status.busy": "2023-08-21T02:30:53.824319Z", - "iopub.status.idle": "2023-08-21T02:30:53.827452Z", - "shell.execute_reply": "2023-08-21T02:30:53.826993Z" + "iopub.execute_input": "2023-08-21T03:36:08.001028Z", + "iopub.status.busy": "2023-08-21T03:36:08.000925Z", + "iopub.status.idle": "2023-08-21T03:36:08.003185Z", + "shell.execute_reply": "2023-08-21T03:36:08.002908Z" } }, "outputs": [ @@ -2425,10 +2425,10 @@ "id": "89955ee2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.829480Z", - "iopub.status.busy": "2023-08-21T02:30:53.829354Z", - "iopub.status.idle": "2023-08-21T02:30:53.831664Z", - "shell.execute_reply": "2023-08-21T02:30:53.831363Z" + "iopub.execute_input": "2023-08-21T03:36:08.004703Z", + "iopub.status.busy": "2023-08-21T03:36:08.004594Z", + "iopub.status.idle": "2023-08-21T03:36:08.006692Z", + "shell.execute_reply": "2023-08-21T03:36:08.006429Z" }, "lines_to_next_cell": 0 }, @@ -2463,10 +2463,10 @@ "id": "517f592d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.833607Z", - "iopub.status.busy": "2023-08-21T02:30:53.833470Z", - "iopub.status.idle": "2023-08-21T02:30:53.836016Z", - "shell.execute_reply": "2023-08-21T02:30:53.835622Z" + "iopub.execute_input": "2023-08-21T03:36:08.008158Z", + "iopub.status.busy": "2023-08-21T03:36:08.008062Z", + "iopub.status.idle": "2023-08-21T03:36:08.010083Z", + "shell.execute_reply": "2023-08-21T03:36:08.009819Z" } }, "outputs": [ @@ -2530,10 +2530,10 @@ "id": "35927abd", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.837884Z", - "iopub.status.busy": "2023-08-21T02:30:53.837772Z", - "iopub.status.idle": "2023-08-21T02:30:53.840479Z", - "shell.execute_reply": "2023-08-21T02:30:53.840004Z" + "iopub.execute_input": "2023-08-21T03:36:08.011518Z", + "iopub.status.busy": "2023-08-21T03:36:08.011425Z", + "iopub.status.idle": "2023-08-21T03:36:08.013558Z", + "shell.execute_reply": "2023-08-21T03:36:08.013317Z" } }, "outputs": [ @@ -2571,10 +2571,10 @@ "id": "78ee7f5b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.842677Z", - "iopub.status.busy": "2023-08-21T02:30:53.842548Z", - "iopub.status.idle": "2023-08-21T02:30:53.844992Z", - "shell.execute_reply": "2023-08-21T02:30:53.844526Z" + "iopub.execute_input": "2023-08-21T03:36:08.014962Z", + "iopub.status.busy": "2023-08-21T03:36:08.014871Z", + "iopub.status.idle": "2023-08-21T03:36:08.016938Z", + "shell.execute_reply": "2023-08-21T03:36:08.016689Z" } }, "outputs": [ @@ -2612,10 +2612,10 @@ "id": "16212696", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.847326Z", - "iopub.status.busy": "2023-08-21T02:30:53.847150Z", - "iopub.status.idle": "2023-08-21T02:30:53.849618Z", - "shell.execute_reply": "2023-08-21T02:30:53.849294Z" + "iopub.execute_input": "2023-08-21T03:36:08.018506Z", + "iopub.status.busy": "2023-08-21T03:36:08.018407Z", + "iopub.status.idle": "2023-08-21T03:36:08.020572Z", + "shell.execute_reply": "2023-08-21T03:36:08.020301Z" } }, "outputs": [ @@ -2651,10 +2651,10 @@ "id": "d5f473d2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.851386Z", - "iopub.status.busy": "2023-08-21T02:30:53.851246Z", - "iopub.status.idle": "2023-08-21T02:30:53.853942Z", - "shell.execute_reply": "2023-08-21T02:30:53.853591Z" + "iopub.execute_input": "2023-08-21T03:36:08.022048Z", + "iopub.status.busy": "2023-08-21T03:36:08.021947Z", + "iopub.status.idle": "2023-08-21T03:36:08.024301Z", + "shell.execute_reply": "2023-08-21T03:36:08.024006Z" } }, "outputs": [ @@ -2692,10 +2692,10 @@ "id": "c89646d6", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.855928Z", - "iopub.status.busy": "2023-08-21T02:30:53.855791Z", - "iopub.status.idle": "2023-08-21T02:30:53.858120Z", - "shell.execute_reply": "2023-08-21T02:30:53.857789Z" + "iopub.execute_input": "2023-08-21T03:36:08.025864Z", + "iopub.status.busy": "2023-08-21T03:36:08.025745Z", + "iopub.status.idle": "2023-08-21T03:36:08.027990Z", + "shell.execute_reply": "2023-08-21T03:36:08.027692Z" } }, "outputs": [ @@ -2728,10 +2728,10 @@ "id": "87f6b4f2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.860248Z", - "iopub.status.busy": "2023-08-21T02:30:53.860104Z", - "iopub.status.idle": "2023-08-21T02:30:53.862866Z", - "shell.execute_reply": "2023-08-21T02:30:53.862370Z" + "iopub.execute_input": "2023-08-21T03:36:08.029541Z", + "iopub.status.busy": "2023-08-21T03:36:08.029439Z", + "iopub.status.idle": "2023-08-21T03:36:08.031650Z", + "shell.execute_reply": "2023-08-21T03:36:08.031378Z" } }, "outputs": [ @@ -2764,10 +2764,10 @@ "id": "5da5bda8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.864935Z", - "iopub.status.busy": "2023-08-21T02:30:53.864779Z", - "iopub.status.idle": "2023-08-21T02:30:53.891611Z", - "shell.execute_reply": "2023-08-21T02:30:53.891242Z" + "iopub.execute_input": "2023-08-21T03:36:08.033127Z", + "iopub.status.busy": "2023-08-21T03:36:08.033016Z", + "iopub.status.idle": "2023-08-21T03:36:08.056275Z", + "shell.execute_reply": "2023-08-21T03:36:08.056014Z" } }, "outputs": [ @@ -2803,10 +2803,10 @@ "id": "ac48a95b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.893738Z", - "iopub.status.busy": "2023-08-21T02:30:53.893596Z", - "iopub.status.idle": "2023-08-21T02:30:53.896262Z", - "shell.execute_reply": "2023-08-21T02:30:53.895953Z" + "iopub.execute_input": "2023-08-21T03:36:08.057926Z", + "iopub.status.busy": "2023-08-21T03:36:08.057815Z", + "iopub.status.idle": "2023-08-21T03:36:08.060231Z", + "shell.execute_reply": "2023-08-21T03:36:08.059980Z" }, "lines_to_next_cell": 0 }, @@ -2852,10 +2852,10 @@ "id": "ee195cc4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.898200Z", - "iopub.status.busy": "2023-08-21T02:30:53.898084Z", - "iopub.status.idle": "2023-08-21T02:30:53.900679Z", - "shell.execute_reply": "2023-08-21T02:30:53.900285Z" + "iopub.execute_input": "2023-08-21T03:36:08.061798Z", + "iopub.status.busy": "2023-08-21T03:36:08.061686Z", + "iopub.status.idle": "2023-08-21T03:36:08.063979Z", + "shell.execute_reply": "2023-08-21T03:36:08.063715Z" }, "lines_to_next_cell": 2 }, @@ -2895,10 +2895,10 @@ "id": "48917bb5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.902581Z", - "iopub.status.busy": "2023-08-21T02:30:53.902429Z", - "iopub.status.idle": "2023-08-21T02:30:53.905816Z", - "shell.execute_reply": "2023-08-21T02:30:53.905285Z" + "iopub.execute_input": "2023-08-21T03:36:08.067067Z", + "iopub.status.busy": "2023-08-21T03:36:08.066955Z", + "iopub.status.idle": "2023-08-21T03:36:08.069279Z", + "shell.execute_reply": "2023-08-21T03:36:08.068966Z" }, "lines_to_next_cell": 0 }, @@ -2965,10 +2965,10 @@ "id": "5d4caf22", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.907744Z", - "iopub.status.busy": "2023-08-21T02:30:53.907644Z", - "iopub.status.idle": "2023-08-21T02:30:53.910223Z", - "shell.execute_reply": "2023-08-21T02:30:53.909939Z" + "iopub.execute_input": "2023-08-21T03:36:08.070903Z", + "iopub.status.busy": "2023-08-21T03:36:08.070799Z", + "iopub.status.idle": "2023-08-21T03:36:08.072959Z", + "shell.execute_reply": "2023-08-21T03:36:08.072701Z" }, "lines_to_next_cell": 0 }, @@ -3003,10 +3003,10 @@ "id": "348820e3", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.912039Z", - "iopub.status.busy": "2023-08-21T02:30:53.911912Z", - "iopub.status.idle": "2023-08-21T02:30:53.914998Z", - "shell.execute_reply": "2023-08-21T02:30:53.914528Z" + "iopub.execute_input": "2023-08-21T03:36:08.074422Z", + "iopub.status.busy": "2023-08-21T03:36:08.074322Z", + "iopub.status.idle": "2023-08-21T03:36:08.076398Z", + "shell.execute_reply": "2023-08-21T03:36:08.076106Z" } }, "outputs": [ @@ -3042,10 +3042,10 @@ "id": "4aafe45b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.917006Z", - "iopub.status.busy": "2023-08-21T02:30:53.916872Z", - "iopub.status.idle": "2023-08-21T02:30:53.919581Z", - "shell.execute_reply": "2023-08-21T02:30:53.919265Z" + "iopub.execute_input": "2023-08-21T03:36:08.077952Z", + "iopub.status.busy": "2023-08-21T03:36:08.077853Z", + "iopub.status.idle": "2023-08-21T03:36:08.080163Z", + "shell.execute_reply": "2023-08-21T03:36:08.079901Z" } }, "outputs": [ @@ -3088,10 +3088,10 @@ "id": "1be6a588", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.921419Z", - "iopub.status.busy": "2023-08-21T02:30:53.921284Z", - "iopub.status.idle": "2023-08-21T02:30:53.924120Z", - "shell.execute_reply": "2023-08-21T02:30:53.923471Z" + "iopub.execute_input": "2023-08-21T03:36:08.081637Z", + "iopub.status.busy": "2023-08-21T03:36:08.081537Z", + "iopub.status.idle": "2023-08-21T03:36:08.083796Z", + "shell.execute_reply": "2023-08-21T03:36:08.083505Z" } }, "outputs": [ @@ -3127,10 +3127,10 @@ "id": "e83da57b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.926561Z", - "iopub.status.busy": "2023-08-21T02:30:53.926423Z", - "iopub.status.idle": "2023-08-21T02:30:53.929442Z", - "shell.execute_reply": "2023-08-21T02:30:53.929029Z" + "iopub.execute_input": "2023-08-21T03:36:08.085319Z", + "iopub.status.busy": "2023-08-21T03:36:08.085216Z", + "iopub.status.idle": "2023-08-21T03:36:08.087359Z", + "shell.execute_reply": "2023-08-21T03:36:08.087095Z" } }, "outputs": [ @@ -3174,10 +3174,10 @@ "id": "09675294", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.931269Z", - "iopub.status.busy": "2023-08-21T02:30:53.931159Z", - "iopub.status.idle": "2023-08-21T02:30:53.934244Z", - "shell.execute_reply": "2023-08-21T02:30:53.933825Z" + "iopub.execute_input": "2023-08-21T03:36:08.088904Z", + "iopub.status.busy": "2023-08-21T03:36:08.088804Z", + "iopub.status.idle": "2023-08-21T03:36:08.091266Z", + "shell.execute_reply": "2023-08-21T03:36:08.090985Z" } }, "outputs": [ @@ -3214,10 +3214,10 @@ "id": "a85614e4", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.936078Z", - "iopub.status.busy": "2023-08-21T02:30:53.935930Z", - "iopub.status.idle": "2023-08-21T02:30:53.938750Z", - "shell.execute_reply": "2023-08-21T02:30:53.938474Z" + "iopub.execute_input": "2023-08-21T03:36:08.092757Z", + "iopub.status.busy": "2023-08-21T03:36:08.092664Z", + "iopub.status.idle": "2023-08-21T03:36:08.094873Z", + "shell.execute_reply": "2023-08-21T03:36:08.094581Z" }, "lines_to_next_cell": 0 }, @@ -3306,10 +3306,10 @@ "id": "ff81e644", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:53.940735Z", - "iopub.status.busy": "2023-08-21T02:30:53.940592Z", - "iopub.status.idle": "2023-08-21T02:30:54.204936Z", - "shell.execute_reply": "2023-08-21T02:30:54.204512Z" + "iopub.execute_input": "2023-08-21T03:36:08.096546Z", + "iopub.status.busy": "2023-08-21T03:36:08.096449Z", + "iopub.status.idle": "2023-08-21T03:36:08.317557Z", + "shell.execute_reply": "2023-08-21T03:36:08.317278Z" } }, "outputs": [ @@ -3538,10 +3538,10 @@ "id": "5b45aa7f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.208893Z", - "iopub.status.busy": "2023-08-21T02:30:54.208755Z", - "iopub.status.idle": "2023-08-21T02:30:54.213896Z", - "shell.execute_reply": "2023-08-21T02:30:54.213498Z" + "iopub.execute_input": "2023-08-21T03:36:08.319194Z", + "iopub.status.busy": "2023-08-21T03:36:08.319082Z", + "iopub.status.idle": "2023-08-21T03:36:08.322312Z", + "shell.execute_reply": "2023-08-21T03:36:08.322063Z" }, "lines_to_next_cell": 0 }, @@ -3575,10 +3575,10 @@ "id": "413f626a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.217296Z", - "iopub.status.busy": "2023-08-21T02:30:54.216961Z", - "iopub.status.idle": "2023-08-21T02:30:54.221903Z", - "shell.execute_reply": "2023-08-21T02:30:54.221443Z" + "iopub.execute_input": "2023-08-21T03:36:08.323776Z", + "iopub.status.busy": "2023-08-21T03:36:08.323686Z", + "iopub.status.idle": "2023-08-21T03:36:08.326230Z", + "shell.execute_reply": "2023-08-21T03:36:08.325989Z" }, "lines_to_next_cell": 0 }, @@ -3626,10 +3626,10 @@ "id": "57b86346", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.224504Z", - "iopub.status.busy": "2023-08-21T02:30:54.224354Z", - "iopub.status.idle": "2023-08-21T02:30:54.227857Z", - "shell.execute_reply": "2023-08-21T02:30:54.227319Z" + "iopub.execute_input": "2023-08-21T03:36:08.327630Z", + "iopub.status.busy": "2023-08-21T03:36:08.327527Z", + "iopub.status.idle": "2023-08-21T03:36:08.329871Z", + "shell.execute_reply": "2023-08-21T03:36:08.329620Z" }, "lines_to_next_cell": 0 }, @@ -3687,10 +3687,10 @@ "id": "a9698b26", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.231380Z", - "iopub.status.busy": "2023-08-21T02:30:54.231205Z", - "iopub.status.idle": "2023-08-21T02:30:54.236930Z", - "shell.execute_reply": "2023-08-21T02:30:54.236485Z" + "iopub.execute_input": "2023-08-21T03:36:08.331328Z", + "iopub.status.busy": "2023-08-21T03:36:08.331230Z", + "iopub.status.idle": "2023-08-21T03:36:08.334947Z", + "shell.execute_reply": "2023-08-21T03:36:08.334715Z" }, "lines_to_next_cell": 2 }, @@ -3728,10 +3728,10 @@ "id": "4877cb2c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.239516Z", - "iopub.status.busy": "2023-08-21T02:30:54.239347Z", - "iopub.status.idle": "2023-08-21T02:30:54.242212Z", - "shell.execute_reply": "2023-08-21T02:30:54.241735Z" + "iopub.execute_input": "2023-08-21T03:36:08.336400Z", + "iopub.status.busy": "2023-08-21T03:36:08.336322Z", + "iopub.status.idle": "2023-08-21T03:36:08.338340Z", + "shell.execute_reply": "2023-08-21T03:36:08.338101Z" } }, "outputs": [ @@ -3767,10 +3767,10 @@ "id": "2ba1d33d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.243922Z", - "iopub.status.busy": "2023-08-21T02:30:54.243777Z", - "iopub.status.idle": "2023-08-21T02:30:54.247951Z", - "shell.execute_reply": "2023-08-21T02:30:54.247019Z" + "iopub.execute_input": "2023-08-21T03:36:08.339714Z", + "iopub.status.busy": "2023-08-21T03:36:08.339640Z", + "iopub.status.idle": "2023-08-21T03:36:08.342116Z", + "shell.execute_reply": "2023-08-21T03:36:08.341883Z" }, "lines_to_next_cell": 2 }, @@ -3807,10 +3807,10 @@ "id": "3d03baab", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.250515Z", - "iopub.status.busy": "2023-08-21T02:30:54.250359Z", - "iopub.status.idle": "2023-08-21T02:30:54.253509Z", - "shell.execute_reply": "2023-08-21T02:30:54.253038Z" + "iopub.execute_input": "2023-08-21T03:36:08.343548Z", + "iopub.status.busy": "2023-08-21T03:36:08.343471Z", + "iopub.status.idle": "2023-08-21T03:36:08.345627Z", + "shell.execute_reply": "2023-08-21T03:36:08.345379Z" }, "lines_to_next_cell": 2 }, @@ -3851,10 +3851,10 @@ "id": "410b4dd7", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.255708Z", - "iopub.status.busy": "2023-08-21T02:30:54.255564Z", - "iopub.status.idle": "2023-08-21T02:30:54.261449Z", - "shell.execute_reply": "2023-08-21T02:30:54.260677Z" + "iopub.execute_input": "2023-08-21T03:36:08.347031Z", + "iopub.status.busy": "2023-08-21T03:36:08.346955Z", + "iopub.status.idle": "2023-08-21T03:36:08.351303Z", + "shell.execute_reply": "2023-08-21T03:36:08.351081Z" }, "lines_to_next_cell": 0 }, @@ -3967,10 +3967,10 @@ "id": "3540804d", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.264292Z", - "iopub.status.busy": "2023-08-21T02:30:54.264129Z", - "iopub.status.idle": "2023-08-21T02:30:54.279045Z", - "shell.execute_reply": "2023-08-21T02:30:54.278512Z" + "iopub.execute_input": "2023-08-21T03:36:08.352671Z", + "iopub.status.busy": "2023-08-21T03:36:08.352588Z", + "iopub.status.idle": "2023-08-21T03:36:08.365290Z", + "shell.execute_reply": "2023-08-21T03:36:08.365017Z" }, "lines_to_next_cell": 0 }, @@ -4854,10 +4854,10 @@ "id": "66d174f1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.281472Z", - "iopub.status.busy": "2023-08-21T02:30:54.281322Z", - "iopub.status.idle": "2023-08-21T02:30:54.287633Z", - "shell.execute_reply": "2023-08-21T02:30:54.287100Z" + "iopub.execute_input": "2023-08-21T03:36:08.366746Z", + "iopub.status.busy": "2023-08-21T03:36:08.366648Z", + "iopub.status.idle": "2023-08-21T03:36:08.371142Z", + "shell.execute_reply": "2023-08-21T03:36:08.370889Z" }, "lines_to_next_cell": 0 }, @@ -4989,10 +4989,10 @@ "id": "52789c77", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.290101Z", - "iopub.status.busy": "2023-08-21T02:30:54.289961Z", - "iopub.status.idle": "2023-08-21T02:30:54.292706Z", - "shell.execute_reply": "2023-08-21T02:30:54.292398Z" + "iopub.execute_input": "2023-08-21T03:36:08.372548Z", + "iopub.status.busy": "2023-08-21T03:36:08.372468Z", + "iopub.status.idle": "2023-08-21T03:36:08.374676Z", + "shell.execute_reply": "2023-08-21T03:36:08.374427Z" }, "lines_to_next_cell": 0 }, @@ -5030,10 +5030,10 @@ "id": "d83650bf", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.294807Z", - "iopub.status.busy": "2023-08-21T02:30:54.294621Z", - "iopub.status.idle": "2023-08-21T02:30:54.301957Z", - "shell.execute_reply": "2023-08-21T02:30:54.301554Z" + "iopub.execute_input": "2023-08-21T03:36:08.376096Z", + "iopub.status.busy": "2023-08-21T03:36:08.376016Z", + "iopub.status.idle": "2023-08-21T03:36:08.382023Z", + "shell.execute_reply": "2023-08-21T03:36:08.381780Z" } }, "outputs": [ @@ -5254,10 +5254,10 @@ "id": "880d79d9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.304000Z", - "iopub.status.busy": "2023-08-21T02:30:54.303858Z", - "iopub.status.idle": "2023-08-21T02:30:54.306514Z", - "shell.execute_reply": "2023-08-21T02:30:54.306217Z" + "iopub.execute_input": "2023-08-21T03:36:08.383342Z", + "iopub.status.busy": "2023-08-21T03:36:08.383266Z", + "iopub.status.idle": "2023-08-21T03:36:08.385348Z", + "shell.execute_reply": "2023-08-21T03:36:08.385111Z" }, "lines_to_next_cell": 0 }, @@ -5297,10 +5297,10 @@ "id": "c01f4095", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.308396Z", - "iopub.status.busy": "2023-08-21T02:30:54.308140Z", - "iopub.status.idle": "2023-08-21T02:30:54.313637Z", - "shell.execute_reply": "2023-08-21T02:30:54.313232Z" + "iopub.execute_input": "2023-08-21T03:36:08.386800Z", + "iopub.status.busy": "2023-08-21T03:36:08.386719Z", + "iopub.status.idle": "2023-08-21T03:36:08.390900Z", + "shell.execute_reply": "2023-08-21T03:36:08.390675Z" }, "lines_to_next_cell": 0 }, @@ -5410,10 +5410,10 @@ "id": "a4202eb8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.315524Z", - "iopub.status.busy": "2023-08-21T02:30:54.315402Z", - "iopub.status.idle": "2023-08-21T02:30:54.320287Z", - "shell.execute_reply": "2023-08-21T02:30:54.319867Z" + "iopub.execute_input": "2023-08-21T03:36:08.392405Z", + "iopub.status.busy": "2023-08-21T03:36:08.392322Z", + "iopub.status.idle": "2023-08-21T03:36:08.396509Z", + "shell.execute_reply": "2023-08-21T03:36:08.396244Z" }, "lines_to_next_cell": 0 }, @@ -5522,10 +5522,10 @@ "id": "948b2d07", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.322501Z", - "iopub.status.busy": "2023-08-21T02:30:54.322247Z", - "iopub.status.idle": "2023-08-21T02:30:54.328102Z", - "shell.execute_reply": "2023-08-21T02:30:54.327668Z" + "iopub.execute_input": "2023-08-21T03:36:08.397917Z", + "iopub.status.busy": "2023-08-21T03:36:08.397838Z", + "iopub.status.idle": "2023-08-21T03:36:08.402447Z", + "shell.execute_reply": "2023-08-21T03:36:08.402192Z" }, "lines_to_next_cell": 0 }, @@ -5676,10 +5676,10 @@ "id": "1cfdcc5c", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.330104Z", - "iopub.status.busy": "2023-08-21T02:30:54.329925Z", - "iopub.status.idle": "2023-08-21T02:30:54.333962Z", - "shell.execute_reply": "2023-08-21T02:30:54.333547Z" + "iopub.execute_input": "2023-08-21T03:36:08.403773Z", + "iopub.status.busy": "2023-08-21T03:36:08.403692Z", + "iopub.status.idle": "2023-08-21T03:36:08.407036Z", + "shell.execute_reply": "2023-08-21T03:36:08.406794Z" }, "lines_to_next_cell": 0 }, @@ -5763,10 +5763,10 @@ "id": "fd9c5cda", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.335649Z", - "iopub.status.busy": "2023-08-21T02:30:54.335500Z", - "iopub.status.idle": "2023-08-21T02:30:54.339467Z", - "shell.execute_reply": "2023-08-21T02:30:54.339111Z" + "iopub.execute_input": "2023-08-21T03:36:08.408461Z", + "iopub.status.busy": "2023-08-21T03:36:08.408387Z", + "iopub.status.idle": "2023-08-21T03:36:08.411673Z", + "shell.execute_reply": "2023-08-21T03:36:08.411429Z" }, "lines_to_next_cell": 0 }, @@ -5856,10 +5856,10 @@ "id": "6d431cb5", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.341293Z", - "iopub.status.busy": "2023-08-21T02:30:54.341159Z", - "iopub.status.idle": "2023-08-21T02:30:54.347607Z", - "shell.execute_reply": "2023-08-21T02:30:54.347316Z" + "iopub.execute_input": "2023-08-21T03:36:08.413092Z", + "iopub.status.busy": "2023-08-21T03:36:08.413016Z", + "iopub.status.idle": "2023-08-21T03:36:08.418535Z", + "shell.execute_reply": "2023-08-21T03:36:08.418303Z" }, "lines_to_next_cell": 2 }, @@ -6276,10 +6276,10 @@ "id": "fac41ce1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.349344Z", - "iopub.status.busy": "2023-08-21T02:30:54.349222Z", - "iopub.status.idle": "2023-08-21T02:30:54.356013Z", - "shell.execute_reply": "2023-08-21T02:30:54.355554Z" + "iopub.execute_input": "2023-08-21T03:36:08.419882Z", + "iopub.status.busy": "2023-08-21T03:36:08.419806Z", + "iopub.status.idle": "2023-08-21T03:36:08.425319Z", + "shell.execute_reply": "2023-08-21T03:36:08.425073Z" }, "lines_to_next_cell": 0 }, @@ -6700,10 +6700,10 @@ "id": "b0885654", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.357696Z", - "iopub.status.busy": "2023-08-21T02:30:54.357569Z", - "iopub.status.idle": "2023-08-21T02:30:54.370331Z", - "shell.execute_reply": "2023-08-21T02:30:54.363261Z" + "iopub.execute_input": "2023-08-21T03:36:08.426701Z", + "iopub.status.busy": "2023-08-21T03:36:08.426621Z", + "iopub.status.idle": "2023-08-21T03:36:08.431378Z", + "shell.execute_reply": "2023-08-21T03:36:08.431148Z" }, "lines_to_next_cell": 0 }, @@ -6980,10 +6980,10 @@ "id": "213945a6", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.383965Z", - "iopub.status.busy": "2023-08-21T02:30:54.383724Z", - "iopub.status.idle": "2023-08-21T02:30:54.390819Z", - "shell.execute_reply": "2023-08-21T02:30:54.390472Z" + "iopub.execute_input": "2023-08-21T03:36:08.432780Z", + "iopub.status.busy": "2023-08-21T03:36:08.432696Z", + "iopub.status.idle": "2023-08-21T03:36:08.438473Z", + "shell.execute_reply": "2023-08-21T03:36:08.438250Z" }, "lines_to_next_cell": 0 }, @@ -7371,10 +7371,10 @@ "id": "a3c4060a", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.393069Z", - "iopub.status.busy": "2023-08-21T02:30:54.392909Z", - "iopub.status.idle": "2023-08-21T02:30:54.395305Z", - "shell.execute_reply": "2023-08-21T02:30:54.394949Z" + "iopub.execute_input": "2023-08-21T03:36:08.439902Z", + "iopub.status.busy": "2023-08-21T03:36:08.439825Z", + "iopub.status.idle": "2023-08-21T03:36:08.441707Z", + "shell.execute_reply": "2023-08-21T03:36:08.441464Z" }, "lines_to_next_cell": 0 }, @@ -7415,10 +7415,10 @@ "id": "f2bffb69", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.397356Z", - "iopub.status.busy": "2023-08-21T02:30:54.397106Z", - "iopub.status.idle": "2023-08-21T02:30:54.399443Z", - "shell.execute_reply": "2023-08-21T02:30:54.399193Z" + "iopub.execute_input": "2023-08-21T03:36:08.443349Z", + "iopub.status.busy": "2023-08-21T03:36:08.443241Z", + "iopub.status.idle": "2023-08-21T03:36:08.445173Z", + "shell.execute_reply": "2023-08-21T03:36:08.444935Z" }, "lines_to_next_cell": 0 }, @@ -7467,10 +7467,10 @@ "id": "ee827a53", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.401377Z", - "iopub.status.busy": "2023-08-21T02:30:54.401240Z", - "iopub.status.idle": "2023-08-21T02:30:54.403651Z", - "shell.execute_reply": "2023-08-21T02:30:54.403260Z" + "iopub.execute_input": "2023-08-21T03:36:08.446610Z", + "iopub.status.busy": "2023-08-21T03:36:08.446520Z", + "iopub.status.idle": "2023-08-21T03:36:08.448323Z", + "shell.execute_reply": "2023-08-21T03:36:08.448070Z" } }, "outputs": [ @@ -7522,10 +7522,10 @@ "id": "3a097fbc", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.405735Z", - "iopub.status.busy": "2023-08-21T02:30:54.405417Z", - "iopub.status.idle": "2023-08-21T02:30:54.411020Z", - "shell.execute_reply": "2023-08-21T02:30:54.410657Z" + "iopub.execute_input": "2023-08-21T03:36:08.449714Z", + "iopub.status.busy": "2023-08-21T03:36:08.449623Z", + "iopub.status.idle": "2023-08-21T03:36:08.454097Z", + "shell.execute_reply": "2023-08-21T03:36:08.453813Z" }, "lines_to_next_cell": 2 }, @@ -7618,10 +7618,10 @@ "id": "e064e170", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.412983Z", - "iopub.status.busy": "2023-08-21T02:30:54.412748Z", - "iopub.status.idle": "2023-08-21T02:30:54.415622Z", - "shell.execute_reply": "2023-08-21T02:30:54.415301Z" + "iopub.execute_input": "2023-08-21T03:36:08.455528Z", + "iopub.status.busy": "2023-08-21T03:36:08.455447Z", + "iopub.status.idle": "2023-08-21T03:36:08.457783Z", + "shell.execute_reply": "2023-08-21T03:36:08.457543Z" }, "lines_to_next_cell": 0 }, @@ -7675,10 +7675,10 @@ "id": "c915ca52", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.417426Z", - "iopub.status.busy": "2023-08-21T02:30:54.417324Z", - "iopub.status.idle": "2023-08-21T02:30:54.519306Z", - "shell.execute_reply": "2023-08-21T02:30:54.518811Z" + "iopub.execute_input": "2023-08-21T03:36:08.459248Z", + "iopub.status.busy": "2023-08-21T03:36:08.459155Z", + "iopub.status.idle": "2023-08-21T03:36:08.552220Z", + "shell.execute_reply": "2023-08-21T03:36:08.551914Z" }, "lines_to_next_cell": 0 }, @@ -7724,10 +7724,10 @@ "id": "65cd6d02", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.521470Z", - "iopub.status.busy": "2023-08-21T02:30:54.521326Z", - "iopub.status.idle": "2023-08-21T02:30:54.615961Z", - "shell.execute_reply": "2023-08-21T02:30:54.615578Z" + "iopub.execute_input": "2023-08-21T03:36:08.553877Z", + "iopub.status.busy": "2023-08-21T03:36:08.553770Z", + "iopub.status.idle": "2023-08-21T03:36:08.640715Z", + "shell.execute_reply": "2023-08-21T03:36:08.640411Z" }, "lines_to_next_cell": 0 }, @@ -7766,10 +7766,10 @@ "id": "76b5c0b1", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.617831Z", - "iopub.status.busy": "2023-08-21T02:30:54.617705Z", - "iopub.status.idle": "2023-08-21T02:30:54.724737Z", - "shell.execute_reply": "2023-08-21T02:30:54.724372Z" + "iopub.execute_input": "2023-08-21T03:36:08.642311Z", + "iopub.status.busy": "2023-08-21T03:36:08.642208Z", + "iopub.status.idle": "2023-08-21T03:36:08.737860Z", + "shell.execute_reply": "2023-08-21T03:36:08.737565Z" }, "lines_to_next_cell": 0 }, @@ -7806,10 +7806,10 @@ "id": "183a2c2b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.726841Z", - "iopub.status.busy": "2023-08-21T02:30:54.726711Z", - "iopub.status.idle": "2023-08-21T02:30:54.769714Z", - "shell.execute_reply": "2023-08-21T02:30:54.769215Z" + "iopub.execute_input": "2023-08-21T03:36:08.739490Z", + "iopub.status.busy": "2023-08-21T03:36:08.739374Z", + "iopub.status.idle": "2023-08-21T03:36:08.779690Z", + "shell.execute_reply": "2023-08-21T03:36:08.779420Z" } }, "outputs": [], @@ -7837,10 +7837,10 @@ "id": "75fbb981", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.772071Z", - "iopub.status.busy": "2023-08-21T02:30:54.771921Z", - "iopub.status.idle": "2023-08-21T02:30:54.959763Z", - "shell.execute_reply": "2023-08-21T02:30:54.959369Z" + "iopub.execute_input": "2023-08-21T03:36:08.781309Z", + "iopub.status.busy": "2023-08-21T03:36:08.781225Z", + "iopub.status.idle": "2023-08-21T03:36:08.949186Z", + "shell.execute_reply": "2023-08-21T03:36:08.948871Z" } }, "outputs": [ @@ -7885,10 +7885,10 @@ "id": "55b3a1cc", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.961682Z", - "iopub.status.busy": "2023-08-21T02:30:54.961534Z", - "iopub.status.idle": "2023-08-21T02:30:54.965199Z", - "shell.execute_reply": "2023-08-21T02:30:54.964816Z" + "iopub.execute_input": "2023-08-21T03:36:08.950967Z", + "iopub.status.busy": "2023-08-21T03:36:08.950852Z", + "iopub.status.idle": "2023-08-21T03:36:08.953871Z", + "shell.execute_reply": "2023-08-21T03:36:08.953602Z" }, "lines_to_next_cell": 0 }, @@ -7924,10 +7924,10 @@ "id": "f3d88794", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:54.967173Z", - "iopub.status.busy": "2023-08-21T02:30:54.967059Z", - "iopub.status.idle": "2023-08-21T02:30:55.081822Z", - "shell.execute_reply": "2023-08-21T02:30:55.081482Z" + "iopub.execute_input": "2023-08-21T03:36:08.955394Z", + "iopub.status.busy": "2023-08-21T03:36:08.955297Z", + "iopub.status.idle": "2023-08-21T03:36:09.060746Z", + "shell.execute_reply": "2023-08-21T03:36:09.060425Z" } }, "outputs": [ @@ -7961,10 +7961,10 @@ "id": "eea49f5b", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:55.083629Z", - "iopub.status.busy": "2023-08-21T02:30:55.083497Z", - "iopub.status.idle": "2023-08-21T02:30:55.194581Z", - "shell.execute_reply": "2023-08-21T02:30:55.193963Z" + "iopub.execute_input": "2023-08-21T03:36:09.062393Z", + "iopub.status.busy": "2023-08-21T03:36:09.062272Z", + "iopub.status.idle": "2023-08-21T03:36:09.164120Z", + "shell.execute_reply": "2023-08-21T03:36:09.163816Z" }, "lines_to_next_cell": 0 }, @@ -7999,10 +7999,10 @@ "id": "d5bcfff8", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:55.196850Z", - "iopub.status.busy": "2023-08-21T02:30:55.196698Z", - "iopub.status.idle": "2023-08-21T02:30:55.304087Z", - "shell.execute_reply": "2023-08-21T02:30:55.303692Z" + "iopub.execute_input": "2023-08-21T03:36:09.165860Z", + "iopub.status.busy": "2023-08-21T03:36:09.165745Z", + "iopub.status.idle": "2023-08-21T03:36:09.262378Z", + "shell.execute_reply": "2023-08-21T03:36:09.262095Z" }, "lines_to_next_cell": 0 }, @@ -8041,10 +8041,10 @@ "id": "edb66cae", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:55.306152Z", - "iopub.status.busy": "2023-08-21T02:30:55.306018Z", - "iopub.status.idle": "2023-08-21T02:30:56.362145Z", - "shell.execute_reply": "2023-08-21T02:30:56.361802Z" + "iopub.execute_input": "2023-08-21T03:36:09.264050Z", + "iopub.status.busy": "2023-08-21T03:36:09.263936Z", + "iopub.status.idle": "2023-08-21T03:36:10.182139Z", + "shell.execute_reply": "2023-08-21T03:36:10.181842Z" }, "lines_to_next_cell": 0 }, @@ -8079,10 +8079,10 @@ "id": "4f5d25d9", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:56.364362Z", - "iopub.status.busy": "2023-08-21T02:30:56.364138Z", - "iopub.status.idle": "2023-08-21T02:30:56.613380Z", - "shell.execute_reply": "2023-08-21T02:30:56.612496Z" + "iopub.execute_input": "2023-08-21T03:36:10.183868Z", + "iopub.status.busy": "2023-08-21T03:36:10.183754Z", + "iopub.status.idle": "2023-08-21T03:36:10.401318Z", + "shell.execute_reply": "2023-08-21T03:36:10.401033Z" }, "lines_to_next_cell": 0 }, @@ -8118,10 +8118,10 @@ "id": "ce7b23e2", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:56.615725Z", - "iopub.status.busy": "2023-08-21T02:30:56.615530Z", - "iopub.status.idle": "2023-08-21T02:30:56.622977Z", - "shell.execute_reply": "2023-08-21T02:30:56.622071Z" + "iopub.execute_input": "2023-08-21T03:36:10.403067Z", + "iopub.status.busy": "2023-08-21T03:36:10.402953Z", + "iopub.status.idle": "2023-08-21T03:36:10.408957Z", + "shell.execute_reply": "2023-08-21T03:36:10.408683Z" }, "lines_to_next_cell": 0 }, @@ -8231,10 +8231,10 @@ "id": "a6545d2f", "metadata": { "execution": { - "iopub.execute_input": "2023-08-21T02:30:56.625913Z", - "iopub.status.busy": "2023-08-21T02:30:56.625760Z", - "iopub.status.idle": "2023-08-21T02:30:56.630979Z", - "shell.execute_reply": "2023-08-21T02:30:56.630640Z" + "iopub.execute_input": "2023-08-21T03:36:10.410500Z", + "iopub.status.busy": "2023-08-21T03:36:10.410393Z", + "iopub.status.idle": "2023-08-21T03:36:10.414627Z", + "shell.execute_reply": "2023-08-21T03:36:10.414350Z" }, "lines_to_next_cell": 0 },