如何在 plabels Netlogo 中显示补丁坐标

How to show patch coordinates in plabels Netlogo

我想显示 netlogo 世界的 x 坐标和 y 坐标,当一个按钮是 clicked.I 在下面使用 code.But 它给出一个 error.How 我要这样做吗??

ask patches with [pxcor mod 5 = 0 and pycor mod 5 = 0] 
[
 set plabel  pxcor  pycor 
] 

pxcor pycor更改为(word "(" pxcor "," pycor ")")