Accessing V1DD data

Accessing V1DD data#

We use PyNWB to access these data, similar to many of our other datasets. Let’s explore the elements that are available here

from hdmf_zarr import NWBZarrIO
import pandas as pd
import matplotlib.pyplot as plt
%matplotlib inline
nwbfile_path = PATH HERE

io = NWBZarrIO(nwbfile_path_zarr, "r")
nwbfile_read = io.read()
  Cell In[2], line 1
    nwbfile_path = PATH HERE
                        ^
SyntaxError: invalid syntax