NumPy 数组属性
本章节我们将来了解 NumPy 数组的一些基本属性。 NumPy 数组的维数称为秩(rank),秩就是轴的数量,即数组的维度,一维数组的秩为 1,二维数组的秩为 2,以此类推。 在 NumPy中,每一个线性的数组称为是一个轴(axis)...
Logit究竟是个啥——离散选择模型
Logit究竟是个啥?——离散选择模型之三 - 知乎 (zhihu.com)本文参考链接:https://blog.csdn.net/dudu3332/article/details/118179228...
正确打开/解读Logit模型系数的方式
正确打开/解读Logit模型系数的方式——离散选择模型之四 - 知乎 (zhihu.com)本文参考链接:https://blog.csdn.net/dudu3332/article/details/118181019...
Probit模型离散选择模型之七
效用最大化准则:离散选择模型的核心(Probit模型上篇)——离散选择模型之七 (qq.com)本文参考链接:https://blog.csdn.net/dudu3332/article/details/118182693...
Logit模型离散选择模型之九
效用最大化准则:离散选择模型的核心(二项Logit模型)——离散选择模型之九 (qq.com)本文参考链接:https://blog.csdn.net/dudu3332/article/details/118196841...
python 函数习题
WARMUP SECTION: LESSER OF TWO EVENS: Write a function that returns the lesser of two given numbers if both nu...
python 教程中猜数字小程序的勘误
原文程序 sceret_num=random.randint(1,20) for t in range(1,7): guess=int(input()) if guess < sceret_num:...
python教程勘误2 猫的名字
一个循环输出?的名字的程序 catname=[] while True: print("sdfsadf",(len(catname))) name=input() if name =='':...
python函数练习二
ANIMAL CRACKERS: Write a function takes a two-word string and returns True if both words begin with same letter¶ animal...
python sort函数
a1=[1,2,3,2,-1] a1.sort() a1 a1.sort(reverse=True) a1 a2=['sbsdf','sdfsdf','ffe','wew'] a2.sort() a2 a1 Out[15]:...