mirror of
https://gitlab.cern.ch/wotsubo/PSBoardDataBase.git
synced 2025-06-08 05:55:42 +09:00
update(notebook): add result browser queried with runid
This commit is contained in:
parent
969a06de22
commit
7646b29791
2 changed files with 47 additions and 1 deletions
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
### Added
|
||||
|
||||
- Add result browser queried with runid to get_results notebook
|
||||
|
||||
### Changed
|
||||
|
||||
- Renamed files which define modules to their names
|
||||
|
|
|
@ -56,6 +56,16 @@ md"""
|
|||
出荷状況
|
||||
""";
|
||||
|
||||
# ╔═╡ 58a7977f-8c6c-4cd8-9ae4-ef4f000a3548
|
||||
md"""
|
||||
# runidでクエリ
|
||||
"""
|
||||
|
||||
# ╔═╡ 034dc70b-799d-4953-9895-22b378081a59
|
||||
md"""
|
||||
run idを入力: $(@bind runid_tosearch NumberField(0:999999, default = 100))
|
||||
"""
|
||||
|
||||
# ╔═╡ 1d90c687-7e67-43ed-b5bf-68ef9040dc95
|
||||
md"""
|
||||
# 100回じゃない試験
|
||||
|
@ -136,6 +146,12 @@ single_result_for_id = filter(
|
|||
qaqc_single_result,
|
||||
);
|
||||
|
||||
# ╔═╡ e4525067-34e6-4cd3-b4c2-b48d2f20a7af
|
||||
filter(
|
||||
:runid => ==(runid_tosearch),
|
||||
qaqc_single_result,
|
||||
)
|
||||
|
||||
# ╔═╡ 5954d52e-f939-4bff-be2b-4fe261ae15de
|
||||
filter(
|
||||
:clock => !=(1),
|
||||
|
@ -180,6 +196,12 @@ qaqc_runs = let
|
|||
df
|
||||
end
|
||||
|
||||
# ╔═╡ 118cbfd8-abdb-457f-aeea-dd27fb098377
|
||||
filter(
|
||||
:id => ==(runid_tosearch),
|
||||
qaqc_runs
|
||||
)
|
||||
|
||||
# ╔═╡ a77ccf6b-db67-4a07-833a-210afccc39e5
|
||||
qaqc_extra_run_results = DBInterface.execute(
|
||||
db,
|
||||
|
@ -217,6 +239,20 @@ end;
|
|||
# ╔═╡ 6ceb198e-edd3-4954-b1ff-beef33c3f205
|
||||
extra_result_for_id_show[!, collect(extra_result_for_id_show_cols)]
|
||||
|
||||
# ╔═╡ fc92b3ee-d1b0-4b91-b7c3-28f8db09c676
|
||||
md"""
|
||||
- テストしたpsbid:
|
||||
- 1回試験: $(filter(:runid => ==(runid_tosearch), qaqc_single_result,).psboard_id |> (v -> join(v, ", ")))
|
||||
|
||||
- 100回試験: $(filter(:runid => ==(runid_tosearch), qaqc_extra_run_results).psboard_id |> (v -> join(v, ", ")))
|
||||
"""
|
||||
|
||||
# ╔═╡ 6ae2d5b1-0f34-49a1-b089-fa1bff03a0ea
|
||||
filter(
|
||||
:runid => ==(runid_tosearch),
|
||||
qaqc_extra_run_results,
|
||||
)
|
||||
|
||||
# ╔═╡ 0518af44-878e-4052-b4d4-e7fb3c35efea
|
||||
let
|
||||
df = filter(
|
||||
|
@ -752,7 +788,7 @@ version = "17.4.0+2"
|
|||
# ╟─0299d5b7-8b9f-44ae-a2cf-3db36e1f857a
|
||||
# ╟─6ceb198e-edd3-4954-b1ff-beef33c3f205
|
||||
# ╟─7a11e460-8d6f-454c-8fe6-33c59eeb4937
|
||||
# ╟─ed7c40fe-f966-4afb-a962-896c9f109946
|
||||
# ╠═ed7c40fe-f966-4afb-a962-896c9f109946
|
||||
# ╟─a85b4f19-82e4-40d5-af9f-d5286578b1fb
|
||||
# ╟─45828bb4-e9f5-46d5-8f48-88284f318cc4
|
||||
# ╟─192c47a3-7202-4351-8638-ec49ecb901c5
|
||||
|
@ -761,6 +797,12 @@ version = "17.4.0+2"
|
|||
# ╟─199b45f6-1e63-4392-af6a-6a5ed83bf467
|
||||
# ╟─9513f017-7905-495d-a7eb-6ca5927308dd
|
||||
# ╟─1e9ab6b0-b25d-44ad-92ae-f12f92d91d5e
|
||||
# ╟─58a7977f-8c6c-4cd8-9ae4-ef4f000a3548
|
||||
# ╟─034dc70b-799d-4953-9895-22b378081a59
|
||||
# ╟─fc92b3ee-d1b0-4b91-b7c3-28f8db09c676
|
||||
# ╟─118cbfd8-abdb-457f-aeea-dd27fb098377
|
||||
# ╟─e4525067-34e6-4cd3-b4c2-b48d2f20a7af
|
||||
# ╟─6ae2d5b1-0f34-49a1-b089-fa1bff03a0ea
|
||||
# ╟─1d90c687-7e67-43ed-b5bf-68ef9040dc95
|
||||
# ╠═0518af44-878e-4052-b4d4-e7fb3c35efea
|
||||
# ╟─f1ce8e2a-f54e-4462-953f-66c6b2e82cdb
|
||||
|
|
Loading…
Add table
Reference in a new issue