Cara memutar label centang sumbu x di diagram batang Pandas

96

Dengan kode berikut:

import matplotlib
matplotlib.style.use('ggplot')
import matplotlib.pyplot as plt
import pandas as pd

df = pd.DataFrame({ 'celltype':["foo","bar","qux","woz"], 's1':[5,9,1,7], 's2':[12,90,13,87]})
df = df[["celltype","s1","s2"]]
df.set_index(["celltype"],inplace=True)
df.plot(kind='bar',alpha=0.75)
plt.xlabel("")

Saya membuat plot ini:

masukkan deskripsi gambar di sini

Bagaimana cara memutar label centang sumbu x ke 0 derajat?

Saya mencoba menambahkan ini tetapi tidak berhasil:

plt.set_xticklabels(df.index,rotation=90)
neversaint
sumber

Jawaban:

184

Lulus param rot=0untuk memutar xticks:

import matplotlib
matplotlib.style.use('ggplot')
import matplotlib.pyplot as plt
import pandas as pd

df = pd.DataFrame({ 'celltype':["foo","bar","qux","woz"], 's1':[5,9,1,7], 's2':[12,90,13,87]})
df = df[["celltype","s1","s2"]]
df.set_index(["celltype"],inplace=True)
df.plot(kind='bar',alpha=0.75, rot=0)
plt.xlabel("")
plt.show()

plot hasil:

masukkan deskripsi gambar di sini

EdChum
sumber
11

Coba ini -

plt.xticks(rotation=90)

masukkan deskripsi gambar di sini

Ankit Kumar Rajpoot
sumber
9

Pertanyaannya jelas, tetapi judulnya tidak seakurat mungkin. Jawaban saya adalah untuk mereka yang datang mencari untuk mengubah label sumbu , sebagai lawan dari label centang, yang merupakan jawaban yang diterima. (Judul sekarang telah diperbaiki).

for ax in plt.gcf().axes:
    plt.sca(ax)
    plt.xlabel(ax.get_xlabel(), rotation=90)
CPBL
sumber
7

Anda dapat menggunakan set_xticklabels ()

ax.set_xticklabels(df['Names'], rotation=90, ha='right')
Skromak
sumber
3

Berikut ini mungkin bisa membantu:

# Valid font size are xx-small, x-small, small, medium, large, x-large, xx-large, larger, smaller, None

plt.xticks(
    rotation=45,
    horizontalalignment='right',
    fontweight='light',
    fontsize='medium',
)

Berikut adalah fungsi xticks[referensi] dengan contoh dan API

def xticks(ticks=None, labels=None, **kwargs):
    """
    Get or set the current tick locations and labels of the x-axis.

    Call signatures::

        locs, labels = xticks()            # Get locations and labels
        xticks(ticks, [labels], **kwargs)  # Set locations and labels

    Parameters
    ----------
    ticks : array_like
        A list of positions at which ticks should be placed. You can pass an
        empty list to disable xticks.

    labels : array_like, optional
        A list of explicit labels to place at the given *locs*.

    **kwargs
        :class:`.Text` properties can be used to control the appearance of
        the labels.

    Returns
    -------
    locs
        An array of label locations.
    labels
        A list of `.Text` objects.

    Notes
    -----
    Calling this function with no arguments (e.g. ``xticks()``) is the pyplot
    equivalent of calling `~.Axes.get_xticks` and `~.Axes.get_xticklabels` on
    the current axes.
    Calling this function with arguments is the pyplot equivalent of calling
    `~.Axes.set_xticks` and `~.Axes.set_xticklabels` on the current axes.

    Examples
    --------
    Get the current locations and labels:

        >>> locs, labels = xticks()

    Set label locations:

        >>> xticks(np.arange(0, 1, step=0.2))

    Set text labels:

        >>> xticks(np.arange(5), ('Tom', 'Dick', 'Harry', 'Sally', 'Sue'))

    Set text labels and properties:

        >>> xticks(np.arange(12), calendar.month_name[1:13], rotation=20)

    Disable xticks:

        >>> xticks([])
    """
caot
sumber
2

Untuk grafik batang, Anda dapat menyertakan sudut yang Anda inginkan pada akhirnya.

Di sini saya menggunakan rot=0untuk membuatnya sejajar dengan sumbu x.

series.plot.bar(rot=0)
plt.show()
plt.close()
Gajraj Singh
sumber
Dan untuk histogram, sangat mirip. Ganti rotdengan xrotatauyrot
Tom