我们说我有两张桌子pointer-events:none;
和import pandas
data = pandas.read_table("D:\Machine Learning SW\MusicRec\lastfm-dataset- 360K\usersha1-artmbid-artname-plays.tsv",
usecols=[0, 2, 3],
names=['user', 'artist', 'plays'])
# map each artist and user to a unique numeric value
data['user'] = data['user'].astype("category")
data['artist'] = data['artist'].astype("category")
# create a sparse matrix of all the artist/user/play triples
plays = coo_matrix((data['plays'].astype(float),
(data['artist'].cat.codes,
data['user'].cat.codes)))
。区域包含用户列表,设备只有一个区域。
我能够做Devices
并且它有效。
但有可能反过来吗?我的意思是Zones
。因为这个不起作用。
(对不起,如果这个问题看起来很愚蠢,但我正在学习如何使用Hibernate,但我无法找到答案。)