Analysis
AnalysisResult
Container for storing and managing results from a measurement analysis.
Attributes:
| Name | Type | Description |
|---|---|---|
output |
dict
|
Dictionary of generic outputs that don't fit into other categories |
updated_params |
dict[str, dict]
|
Dictionary containing the updated parameters for each qubit. |
figures |
dict[str, Figure]
|
Dictionary of matplotlib figures. |
fits |
dict[str, FitResult]
|
Dictionary of fit results. |
extra_data |
dict[str, ndarray]
|
Dictionary of auxiliary computed arrays (e.g., processed IQ data, FFT results). |
Methods:
| Name | Description |
|---|---|
add_exp_info_to_figures |
Annotates each figure with experiment ID and cooldown name from directory path. |
save_output |
Saves the generic output dictionary as a JSON file. |
save_figures |
Saves all figures as PNG and interactive HTML using mpld3. |
aggregate_fit_summaries |
Aggregates human-readable summaries from all fit results. |
save_fits |
Saves aggregated fit summaries to a markdown file. |
save_extra_data |
Stores auxiliary numerical data in an HDF5 file. |
save_all |
Runs all save methods and annotates figures with experimental metadata. |
update |
Merges another |
Source code in sqil_core/experiment/_analysis.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 | |
add_extra_data(new_data, name, qu_id)
Add extra data for the specified qubit.
Source code in sqil_core/experiment/_analysis.py
add_figure(new_figure, name, qu_id)
Add a figure for the specified qubit.
add_fit(new_fit, name, qu_id)
Add a fit for the specified qubit.
add_params(new_params, qu_id)
aggregate_fit_summaries()
Aggreate all the fit summaries and include model name.
Source code in sqil_core/experiment/_analysis.py
save_figures(dir_path)
Saves figures both as png and interactive html.
Source code in sqil_core/experiment/_analysis.py
update(new_anal_res)
Updates all the fields of the current analysis result.
Source code in sqil_core/experiment/_analysis.py
multi_qubit_handler(single_qubit_handler)
Transforms a function able to analyze single qubit data, into a function that analyzes multiple qubits.