python中x[y==1[0是什么意思_python – X_set [y_set == j,0]是什么意思?

这里发生了一些事情.现在,我将放弃循环,但我们知道j将取y_set中的值,因此将为零或一.首先制作两个数组:

import numpy as np

X_set = np.arange(20).reshape(10, 2)

y_set = np.array([0, 1, 1, 1, 0, 0, 1, 1, 0, 1])

从上面看,这段代码基本上是这样做的:

plt.scatter(filtered_values_in_first_column_of X_set,

filtered_values_in_second_column_of X_set)

y_set提供过滤器.我们可以通过建立步骤来实现目标:

print("Where y_set == 0: Boolean mask.")

print(y_set == 0)

print()

print("All rows of X_set indexed by the Boolean mask")

print(X_set[y_set == 0])

print()

print("2D indexing to get only the first column of the above")

print(X_set[y_set == 0, 0])

print()

你可以在numpy indexing这里看到更多.一旦你打破了台阶,它就不会太复杂,但我认为这是一种不必要的复杂方式来完成这项任务.

for循环使得它们可以使用两种不同的颜色重复绘图,具体取决于值是否被y_set等于0或1进行过滤.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值