① 關於python畫圖的圖形編輯
選中圖形上的選中標志,然後雙擊曲線,就會有菜單彈出,可以改顏色和粗細等
② python怎麼在屏幕上畫圖
首先說你的要求有些不明確的部分
比如說你在所有窗體上寫
那是否畫圖的同時還要拖動其他窗體?
這個要求的話
目前的python各種gui庫貌似還沒有支持到這么個繪畫不規則窗體而不會擋住其他窗體還又在其上的;
如果只是在他們上面你可以畫圖而不用一定要拖動其他窗體的話
可以設計窗體為全屏大小,背景透明,不顯示標題欄,然後用普通的畫圖函數就可以了
對了
推薦使用wxpython
③ 初學python,matplotlib庫畫圖不顯示求助
最近在看《Python數據分析》這本書,而自己寫代碼一直用的是Pycharm,在練習的時候就碰到了plot()繪圖不能顯示出來的問題。網上翻了一下找到知乎上一篇回答,試了一下好像不行,而且答住提供的「from pylab import *」的方法也不太符合編程規范,最後在Stackoverflow找到了想要的答案,特在此分析一下給大家:
以下是有問題的代碼,不能繪圖成功:
import pandas as pd
from numpy import *
import matplotlib.pyplot as plt
ts = pd.Series(random.randn(1000), index=pd.date_range('1/1/2000', periods=1000))
ts = ts.cumsum()
ts.plot()
解決方案是:導入matplotlib.pyplot庫,繪圖後再調用matplotlib.pyplot.show()方法就能把繪制的圖顯示出來了!
如下(註:後面發現此方法在知乎上那篇問答的評論區有人提供了):
import pandas as pd
from numpy import *
import matplotlib.pyplot as plt
ts = pd.Series(random.randn(1000), index=pd.date_range('1/1/2000', periods=1000))
ts = ts.cumsum()
ts.plot()
plt.show()
④ 無所不能的python編程是怎麼快速畫圖的呢
python繪圖工具有很多,常用的turtle海龜繪圖體系,只要引入import
turtle就可以無需安裝
⑤ 求python畫圖程序
import numpy as np
import matplotlib.pyplot as plt
for line in open('data.txt'):
dian=line.split()
plt.plot(dian[0], dian[1], 'yo-')
plt.title('tuxing')
plt.ylabel('mag')
plt.xlabel('HJD')
plt.show()
--------------------------
運用numpy 和matplotlib 庫
下載地址http://www.lfd.uci.e/~gohlke/pythonlibs/
⑥ 怎麼用python繪圖
你可以使用numpy和matplotlab這兩個庫來實現的你功能。
你的圖可以參考:
http://matplotlib.org/examples/pylab_examples/histogram_percent_demo.html
importmatplotlib
fromnumpy.randomimportrandn
importmatplotlib.pyplotasplt
frommatplotlib.tickerimportFuncFormatter
defto_percent(y,position):
#Ignorethepassedinposition.
#ticklocations.
s=str(100*y)
#
ifmatplotlib.rcParams['text.usetex']==True:
returns+r'$\%$'
else:
returns+'%'
x=randn(5000)
#Makeanormedhistogram.It'llbemultipliedby100later.
plt.hist(x,bins=50,normed=True)
#_percent.Thismultipliesallthe
#defaultlabelsby100,makingthemallpercentages
formatter=FuncFormatter(to_percent)
#Settheformatter
plt.gca().yaxis.set_major_formatter(formatter)
plt.show()
最主要的就是x軸和y軸的處理,我按照對數算了一下你提供的數據,好像和這個圖效果不一樣。
如果解決了您的問題請採納!
如果未解決請繼續追問
⑦ Python作圖程序
實戰小程序:畫出y=x^3的散點圖
樣例代碼如下:
[python]view plain
#coding=utf-8
importpylabasy#引入pylab模塊
x=y.np.linspace(-10,10,100)#設置x橫坐標范圍和點數
y.plot(x,x*x*x,'or')#生成圖像
ax=y.gca()
ax.spines['right'].set_color('none')
ax.spines['top'].set_color('none')
ax.xaxis.set_ticks_position('bottom')
ax.spines['bottom'].set_position(('data',0))
ax.yaxis.set_ticks_position('left')
ax.spines['left'].set_position(('data',0))
ax.set_yticks([-1000,-500,500,1000])
y.xlim(x.min(),x.max())#將橫坐標設置為x的最大值和最小值
y.show()#顯示圖像
[python]view plain
importpylabasy
[python]view plain
y.np.linspace(-10,10,100)
舉例:
[python]view plain
>>>np.linspace(2.0,3.0,num=5)
array([2.,2.25,2.5,2.75,3.])
[python]view plain
y.plot(x,x*x*x,'or')#生成圖像
'r'可設置顏色為紅色,基本上和matlab的操作很像。
[python]view plain
y.xlim(x.min(),x.max())
⑧ python畫圖
把完整的代碼貼上來看下吧。這個語句看不出問題。。
另外,不知道你最後有沒有打`plt.show()`,如果沒打這個,肯定是顯示不出來的。
⑨ Python語言畫圖
1)首先Python畫圖與WING IDE無關,最簡單的是使用Tkinter畫圖
2)畫出單詞有很多方法,最笨的是用劃線方式一筆一筆的畫。其次是直接輸出文本,但意義不大。另外一種方法是調用圖片,你可以在圖片上任意畫好東西後顯示出來。
3)代碼示例:(這個例子就畫了個簡單的字母P)
from Tkinter import *
root=Tk()
root.title('Drawing Example')
canvas=Canvas(root,width=200,height=160,bg='white')
canvas.create_line(10,10,100,70)
canvas.create_line(10,10,40,10)
canvas.create_line(40,10,40,40)
canvas.create_line(10,40,40,40)
canvas.pack()
root.mainloop()
⑩ python畫圖
matplotlib就可以,看他示例文件里動畫那個文件夾。