我想知道如何将这个地块切成小条。 Plot of galaxies positions我需要将其制作成高度为10的切片,宽度需要保持不变。
这是情节的代码:
from matplotlib import pyplot as plt
import numpy as np
plt.figure(figsize=(13,13))
#Don't forget to start from 0 not 1
x=[]
y=[]
z=[]
filename=(r"C:\Users\Melis\OneDrive\Documents\minnimill6.txt")
f1=open(filename)
while 1:
rawline = f1.readline()
lines = rawline.strip()
if lines == '':
break
if lines[0] != '#' and lines[0] != 'g':
line = np.array(list(map(float, lines.split(','))))
#print (line)
x.append(line[14])
y.append(line[15])
z.append(line[16])
f1.close()
plt.scatter([x],[y])
plt.draw()