VNA control
scikit-rf has a few virtual instrument classes, located in the skrf.vi
module. This page demonstrates the basic control of a PNA
Connecting and querying instrument ID
from skrf.vi.vna import keysight
instr = keysight.PNA("TCPIP0::192.168.0.2::INSTR")
instr.id
Retriving S-parameters as a scikit-rf Network
ntwk = instr.get_snp_network()
[ ]: