散點圖scatter

前言 散點圖主要表現數據量因變量隨自變量而變化,主要有正相關、負相關和不相關。python 代碼 # -*- coding: utf-8 -*- #散點圖:正相關、負相關、不相關 import numpy as np import matplotlib.pyplot as plt import random #正相關 N = 1000 x = np.random.randn(N) y = x
相關文章
相關標籤/搜索