I just create two vectors from a .txt file and I plot them.
I think I have the latest version of matplotlib. I have at least the
last version of python(x,y)


from pylab import*

import matplotlib
matplotlib.rcParams['xtick.labelsize'] = 20.0

B5= genfromtxt("2012-05-14_RC3D3D2C1_D2D1_m18T_18T_Vg32V_20K.dat", usecols =(2))
RH5 = genfromtxt("2012-05-14_RC3D3D2C1_D2D1_m18T_18T_Vg32V_20K.dat",
usecols =(3))
#plot(B5,RH5,"-o",label = "2012-05-14_RC3D3D2C1_D2D1_m18T_18T_Vg32V_20K.dat")


xlabel(u"$ B (T)$", size= 30)
ylabel(u"$R_H (\Omega)$", size= 30)
grid()
legend()
show()

2012/8/30 Benjamin Root <ben.r...@ou.edu>:
>
>
> On Thu, Aug 30, 2012 at 1:38 PM, Fabien Lafont <lafont.fab...@gmail.com>
> wrote:
>>
>> I'm just trying to plot a graph and add a label to each axis of that graph
>> and change the labelsize of the ticks.
>>
>
> Could you post your code?  What you are describing shouldn't happen.  Also,
> which version of matplotlib are you using?
>
> Ben Root
>

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to