#!/usr/bin/env python # coding: utf-8 # In[1]: from pathlib import Path import matplotlib.pyplot as plt import xarray as xr from rich import pretty import quantify_core.data.dataset_adapters as dadapters import quantify_core.data.dataset_attrs as dattrs from quantify_core.data import handling as dh from quantify_core.utilities import dataset_examples from quantify_core.utilities.examples_support import round_trip_dataset from quantify_core.utilities.inspect_utils import display_source_code pretty.install() dh.set_datadir(Path.home() / "quantify-data") # change me! # In[2]: display_source_code(dataset_examples.mk_two_qubit_chevron_dataset) # In[3]: dataset = dataset_examples.mk_two_qubit_chevron_dataset() assert dataset == round_trip_dataset(dataset) # confirm read/write # In[4]: dataset # In[5]: n_points = 110 # only plot a few points for clarity _, axs = plt.subplots(4, 1, sharex=True, figsize=(10, 10)) dataset.amp[:n_points].plot( ax=axs[0], marker=".", color="C0", label=dataset.amp.long_name ) dataset.time[:n_points].plot( ax=axs[1], marker=".", color="C1", label=dataset.time.long_name ) _ = dataset.pop_q0.sel(repetitions=0)[:n_points].plot( ax=axs[2], marker=".", color="C2", label=dataset.pop_q0.long_name ) _ = dataset.pop_q1.sel(repetitions=0)[:n_points].plot( ax=axs[3], marker=".", color="C3", label=dataset.pop_q1.long_name ) for ax in axs: ax.legend() ax.grid() # In[6]: dataset_gridded = dh.to_gridded_dataset( dataset, dimension="main_dim", coords_names=dattrs.get_main_coords(dataset), ) dataset_gridded.pop_q0.plot.pcolormesh(x="amp", col="repetitions") _ = dataset_gridded.pop_q1.plot.pcolormesh(x="amp", col="repetitions") # In[7]: coord_dims = ("repetitions",) coord_values = ["A", "B", "C", "D", "E"] dataset_indexed_rep = xr.Dataset(coords=dict(repetitions=(coord_dims, coord_values))) dataset_indexed_rep # In[8]: # merge with the previous dataset dataset_rep = dataset.merge(dataset_indexed_rep, combine_attrs="drop_conflicts") assert dataset_rep == round_trip_dataset(dataset_rep) # confirm read/write dataset_rep # In[9]: dataset_gridded = dh.to_gridded_dataset( dataset_rep, dimension="main_dim", coords_names=dattrs.get_main_coords(dataset), ) dataset_gridded # In[10]: _ = dataset_gridded.pop_q0.sel(repetitions="A").plot(x="amp") plt.show() _ = dataset_gridded.pop_q0.sel(repetitions="D").plot(x="amp") # In[11]: # pylint: disable=line-too-long # pylint: disable=wrong-import-order # pylint: disable=wrong-import-position # pylint: disable=pointless-string-statement # pylint: disable=duplicate-code # In[12]: import pendulum from quantify_core.utilities import examples_support examples_support.mk_dataset_attrs( dataset_name="Bias scan", timestamp_start=pendulum.now().to_iso8601_string(), timestamp_end=pendulum.now().add(minutes=2).to_iso8601_string(), dataset_state="done", ) # In[13]: # pylint: disable=line-too-long # pylint: disable=wrong-import-order # pylint: disable=wrong-import-position # pylint: disable=pointless-string-statement # pylint: disable=duplicate-code # In[14]: import pendulum from quantify_core.utilities import examples_support examples_support.mk_dataset_attrs( dataset_name="My experiment", timestamp_start=pendulum.now().to_iso8601_string(), timestamp_end=pendulum.now().add(minutes=2).to_iso8601_string(), software_versions={ "lab_fridge_magnet_driver": "v1.4.2", # software version/tag "my_lab_repo": "9d8acf63f48c469c1b9fa9f2c3cf230845f67b18", # git commit hash }, ) # In[15]: # pylint: disable=duplicate-code # pylint: disable=wrong-import-position # In[16]: from quantify_core.data.dataset_attrs import QDatasetIntraRelationship from quantify_core.utilities import examples_support attrs = examples_support.mk_dataset_attrs( relationships=[ QDatasetIntraRelationship( item_name="q0", relation_type="calibration", related_names=["q0_cal"], ).to_dict() ] ) # In[17]: from quantify_core.data.dataset_attrs import QDatasetAttrs # tip: to_json and from_dict, from_json are also available dataset.attrs = QDatasetAttrs().to_dict() dataset.attrs # In[18]: dataset.quantify_dataset_version, dataset.tuid # In[19]: # pylint: disable=line-too-long # pylint: disable=wrong-import-order # pylint: disable=wrong-import-position # pylint: disable=pointless-string-statement # pylint: disable=duplicate-code # In[20]: from quantify_core.utilities import examples_support examples_support.mk_main_coord_attrs() # In[21]: examples_support.mk_secondary_coord_attrs() # In[22]: dataset.amp.attrs # In[23]: # pylint: disable=line-too-long # pylint: disable=wrong-import-order # pylint: disable=wrong-import-position # pylint: disable=pointless-string-statement # pylint: disable=duplicate-code # In[24]: from quantify_core.utilities import examples_support examples_support.mk_main_var_attrs(coords=["time"]) # In[25]: examples_support.mk_secondary_var_attrs(coords=["cal"]) # In[26]: dataset.pop_q0.attrs # In[27]: display_source_code(dh.write_dataset) display_source_code(dh.load_dataset) # In[28]: display_source_code(dadapters.AdapterH5NetCDF)