About 11,500,000 results
Open links in new tab
  1. python - How to change tick label font size - Stack Overflow

    Jun 17, 2011 · In a matplotlib figure, how can I make the font size for the tick labels using ax1.set_xticklabels() smaller? Further, how can one rotate it from horizontal to vertical?

  2. python - Common xlabel/ylabel for matplotlib subplots - Stack …

    Apr 22, 2013 · I'm guessing this is because when the label is finally drawn, matplotlib uses 0.5 for the y -coordinate without checking whether the underlying coordinate transform has changed.

  3. python - Changing the text on a label - Stack Overflow

    However, while it does print that text, the label remains unchanged. From looking at other questions on similar problems and issues, I have figured how to work with some of this outside …

  4. python - Update Tkinter Label from variable - Stack Overflow

    from tkinter import * outputText = 'Ready' counter = int(0) root = Tk() root.maxsize(400, 400) var = StringVar() l = Label(root, textvariable=var, anchor=NW, justify=LEFT, wraplength=398) …

  5. python - Modify tick label text - Stack Overflow

    Modify tick label text Asked 13 years, 5 months ago Modified 3 years, 2 months ago Viewed 844k times

  6. python - Label data points on plot - Stack Overflow

    If you want to label your plot points using python matplotlib, I used the following code. from matplotlib import pyplot as plt fig = plt.figure() ax = fig.add_subplot(111) A = anyarray B =

  7. Setting sensitivity label for excel file using python

    Nov 22, 2021 · Setting sensitivity label for excel file using python [duplicate] Asked 4 years ago Modified 1 year, 7 months ago Viewed 18k times

  8. python - How to print values into a Label in Tkinter - Stack Overflow

    How to print values into a Label in Tkinter Asked 9 years, 1 month ago Modified 9 years, 1 month ago Viewed 11k times

  9. how to label x-axis using python matplotlib - Stack Overflow

    Nov 23, 2017 · how to label x-axis using python matplotlib Asked 8 years ago Modified 8 years ago Viewed 37k times

  10. How would I modify/add text to a tkinter.Label? - Stack Overflow

    I am not sure how I would add text to my Python label upon button press. Right now, upon pressing the '1' button, my program will change the display label to the text "1". However, I …