VMAT module all segments results

Dear all,

is there any way to see the deviation of each segment when using the VMAT pylinac module? What I have so far is the following (as explained in the documentation):

from pylinac import VMAT

op_img=r"C://Users//Desktop//open.dcm"
dmlc_img=r"C://Users//Desktop//DMLC.dcm"
mydrgs=VMAT(images=[op_img, dmlc_img], delivery_types=[‘open’,‘dmlc’])

mydrgs.analyze(test=‘drmlc’, tolerance=3.0)
print(mydrgs.return_results())
mydrgs.plot_analyzed_image()

which gives the % maximum deviation only.
Please bear in mind I am not using the latest pylinac version.

Many thanks

Please read the typical use documentation for the vmat module:
https://pylinac.readthedocs.io/en/latest/vmat_docs.html#typical-use

The easiest way is to print them:
mydrgs.results()