中央極限定理

用 Python 練習統計面試題

Conor Dewey

Data Scientist, Squarespace

這代表什麼?

  中央極限定理

1 Wikimedia
用 Python 練習統計面試題

為何重要?

  假設檢定

1 Wikimedia
用 Python 練習統計面試題

大數法則

大數法則

1 StackExchange
用 Python 練習統計面試題

在 Python 模擬 CLT

np.random.randint(start, end, size)

1 How to Visualize the Central Limit Theorem in Python
用 Python 練習統計面試題

列表生成式

x = [1,2,3,4]
out = []
for item in x:
    out.append(item**2)
print(out)
[1, 4, 9, 16]
x = [1,2,3,4]
out = [item**2 for item in x]
print(out)
[1, 4, 9, 16]
用 Python 練習統計面試題

重點整理

  • 中央極限定理
  • 大數法則
  • 模擬擲骰
  • 列表生成式
用 Python 練習統計面試題

準備面試吧!

用 Python 練習統計面試題

Preparing Video For Download...