Instead of
egress_block_A = filter(row -> any(occursin.(["1:main signal"], row.label)), run_block)[1,:s]
you cloud write
egress_block_A = run_block[run_block.label .== "1:main signal", :s][1]
For me the second option is more readable. What do you think?
Instead of
you cloud write
For me the second option is more readable. What do you think?