Sets the x coordinates. The 'x' property is an array that may be specified as a tuple, list, numpy array, or pandas Series Returns ------- numpy.ndarray
(self)
| 1297 | |
| 1298 | @property |
| 1299 | def x(self): |
| 1300 | """ |
| 1301 | Sets the x coordinates. |
| 1302 | |
| 1303 | The 'x' property is an array that may be specified as a tuple, |
| 1304 | list, numpy array, or pandas Series |
| 1305 | |
| 1306 | Returns |
| 1307 | ------- |
| 1308 | numpy.ndarray |
| 1309 | """ |
| 1310 | return self["x"] |
| 1311 | |
| 1312 | @x.setter |
| 1313 | def x(self, val): |