15 章 生成資料

2021-08-18 19:32:51 字數 1669 閱讀 5247

畫乙個1-5的平方

# 匯入模組

import matplotlib.pyplot as plt

squares = [1, 4, 9, 16, 25]

# 將列表傳給它

plt.plot(squares)

# 開啟matplotlib檢視器,並顯示所繪製的圖形

plt.show()

import matplotlib.pyplot as plt

squares = [1, 4, 9, 16, 25]

plt.plot(squares, linewidth=5)              # 決定了plot()繪製出的線條粗細

# 設定圖示提標,並給座標軸加上標籤           # 引數fontsize 指定文字大小

plt.title("square numbers", fontsize=24) # 設定圖表標題

plt.xlabel("value", fontsize=14)            # 設定x軸標題

plt.ylabel("square of value", fontsize=14)  # 設定y軸標題

# 設定刻度標記的大小

plt.tick_params(axis='both', labelsize=14)  # 設定刻度的樣式,其中指定的實參影響x,y軸上的刻度,並將刻度標記的字型大小設定為 14

plt.show()

此時的圖形x軸 4 對應的是 25 因為plot()是從 0 開始算的 

input_values = [1, 2, 3, 4, 5]

squares = [1, 4, 9, 16, 25]

plt.plot(input_values, squares, linewidth=5)

import matplotlib.pyplot as plt

x_values = list(range(1, 1001))

y_values = [x**2 for x in x_values]

# 引數edgecolor=『none』將散點改為實心點

plt.scatter(x_values, y_values, c=(0, 0, 0.8), edgecolor='none', s=40)         # 呼叫scatter函式使用實參s設定了繪製圖形時使用的點的尺寸

# 給點上色可以傳遞引數'c(0, 1, 0.5)'分別是紅,綠,藍

# 設定圖示標題並給座標軸加上標籤

plt.title("square numbers", fontsize=24)      

plt.xlabel("value", fontsize=14)

plt.ylabel("square of value", fontsize=14)

# 設定刻度標記大小

plt.tick_params(axis='both', which='major', labelsize=14)

# 設定每個座標軸的取值範圍

plt.axis([0, 1100, 0, 1100000])            # axis([x.min, x.max, y.min, y.max])

plt.show()

TPC DS 生成資料

其實,使用 tpc ds 生成系統效能測試的資料,說簡單也簡單,說難,確實也不好做!關鍵是在每一步的操作中,如果遇到了問題,該怎麼樣處理,這個是個問題的關鍵。下面就將生成的步驟簡單描述一下,好記性不如爛筆頭呀!通過以上六步驟,就可以將 tpc ds 資料全部 load 到對應的表中去,也就生成了相應...

Matlab生成資料

有四種基本隨機數函式 rand randi randn 和 randperm。rand 函式返回在 0 和 1 之間均勻分布的實數。例如,r1 rand 1000,1 r1 是乙個含有均勻分布浮點實數的 1000 x 1 的列向量。r1 中的所有值均處於開區間 0,1 內。這些值的直方圖大致上是扁平...

Excel隨機生成資料

concatenate函式是乙個文字連線函式,非常簡單,和 的效果一樣。concatenate是乙個文字連線函式 語法 concatenate text1,text2,text3.其中text表示乙個個要連線起來的文字。隨機小寫字母 char int rand 25 97 隨機大寫字母 char i...