Python | Trazado de gráficos de áreas en una hoja de Excel usando el módulo XlsxWriter

Requisito previo: crear y escribir en un archivo de Excel

XlsxWriter es una biblioteca de Python con la que se pueden realizar múltiples operaciones en archivos de Excel, como crear, escribir, operaciones aritméticas y trazar gráficos. Veamos cómo trazar diferentes gráficos utilizando datos en tiempo real.

Los gráficos se componen de al menos una serie de uno o más puntos de datos. Las series en sí mismas se componen de referencias a rangos de celdas.
Para trazar los gráficos en una hoja de Excel, en primer lugar, cree un objeto de gráfico de un tipo de gráfico específico (es decir, Área, Área apilada, Porcentaje de área apilada cjhart, etc.). Después de crear objetos de gráfico, inserte datos en él y, por último, agregue ese objeto de gráfico en el objeto de hoja.

Código n.º 1: Trace el gráfico de área simple.

Para trazar el gráfico de área simple en una hoja de Excel, use el método add_chart() con el argumento de palabra clave de tipo ‘área’ de un objeto de libro de trabajo.

# import xlsxwriter module
import xlsxwriter
  
# Workbook() takes one, non-optional, argument  
# which is the filename that we want to create.
workbook = xlsxwriter.Workbook('chart_area.xlsx')
  
# The workbook object is then used to add new  
# worksheet via the add_worksheet() method. 
worksheet = workbook.add_worksheet()
  
# Create a new Format object to formats cells
# in worksheets using add_format() method .
  
# here we create bold format object .
bold = workbook.add_format({'bold': 1})
  
# create a data list .
headings = ['Number', 'Batch 1', 'Batch 2']
  
data = [
    [2, 3, 4, 5, 6, 7],
    [80, 80, 100, 60, 50, 100],
    [60, 50, 60, 20, 10, 20],
]
  
# Write a row of data starting from 'A1'
# with bold format .
worksheet.write_row('A1', headings, bold)
  
# Write a column of data starting from
worksheet.write_column('A2', data[0])
worksheet.write_column('B2', data[1])
worksheet.write_column('C2', data[2])
  
# Create a chart object that can be added
# to a worksheet using add_chart() method.
  
# here we create a area chart object .
chart1 = workbook.add_chart({'type': 'area'})
  
# Add a data series to a chart
# using add_series method.
  
# Configure the first series.
# = Sheet1 !$A$1 is equivalent to ['Sheet1', 0, 0].
chart1.add_series({
    'name':       '= Sheet1 !$B$1',
    'categories': '= Sheet1 !$A$2:$A$7',
    'values':     '= Sheet1 !$B$2:$B$7',
})
  
# Configure a second series.
# Note use of alternative syntax to define ranges.
# [sheetname, first_row, first_col, last_row, last_col].
chart1.add_series({
    'name':       ['Sheet1', 0, 2],
    'categories': ['Sheet1', 1, 0, 6, 0],
    'values':     ['Sheet1', 1, 2, 6, 2],
})
  
# Add a chart title 
chart1.set_title ({'name': 'Results of data analysis'})
  
# Add x-axis label
chart1.set_x_axis({'name': 'Test number'})
  
# Add y-axis label
chart1.set_y_axis({'name': 'Data length (mm)'})
  
# Set an Excel chart style.
chart1.set_style(11)
  
# add chart to the worksheet 
# the top-left corner of a chart 
# is anchored to cell E2 . 
worksheet.insert_chart('E2', chart1)
  
# Finally, close the Excel file 
# via the close() method. 
workbook.close()

Salida:
output1
 
Código #2: Trazar el gráfico de áreas apiladas.

Para trazar el gráfico de áreas apiladas en una hoja de Excel, use el método add_chart() con el argumento de palabra clave de tipo ‘área’ y subtipo ‘apilado’ de un objeto de libro de trabajo.

# import xlsxwriter module
import xlsxwriter
  
# Workbook() takes one, non-optional, argument  
# which is the filename that we want to create.
workbook = xlsxwriter.Workbook('chart_area2.xlsx')
  
# The workbook object is then used to add new  
# worksheet via the add_worksheet() method. 
worksheet = workbook.add_worksheet()
  
# Create a new Format object to formats cells
# in worksheets using add_format() method .
  
# here we create bold format object .
bold = workbook.add_format({'bold': 1})
  
# create a data list .
headings = ['Number', 'Batch 1', 'Batch 2']
  
data = [
    [2, 3, 4, 5, 6, 7],
    [80, 80, 100, 60, 50, 100],
    [60, 50, 60, 20, 10, 20],
]
  
# Write a row of data starting from 'A1'
# with bold format .
worksheet.write_row('A1', headings, bold)
  
# Write a column of data starting from
worksheet.write_column('A2', data[0])
worksheet.write_column('B2', data[1])
worksheet.write_column('C2', data[2])
  
# Create a chart object that can be added
# to a worksheet using add_chart() method.
  
# here we create a stacked area chart object .
chart1 = workbook.add_chart({'type': 'area', 'subtype': 'stacked'})
  
# Add a data series to a chart
# using add_series method.
  
# Configure the first series.
# = Sheet1 !$A$1 is equivalent to ['Sheet1', 0, 0].
chart1.add_series({
    'name':       '= Sheet1 !$B$1',
    'categories': '= Sheet1 !$A$2:$A$7',
    'values':     '= Sheet1 !$B$2:$B$7',
})
  
# Configure a second series.
# Note use of alternative syntax to define ranges.
# [sheetname, first_row, first_col, last_row, last_col].
chart1.add_series({
    'name':       ['Sheet1', 0, 2],
    'categories': ['Sheet1', 1, 0, 6, 0],
    'values':     ['Sheet1', 1, 2, 6, 2],
})
  
# Add a chart title 
chart1.set_title ({'name': 'Results of data analysis'})
  
# Add x-axis label
chart1.set_x_axis({'name': 'Test number'})
  
# Add y-axis label
chart1.set_y_axis({'name': 'Data length (mm)'})
  
# Set an Excel chart style.
chart1.set_style(11)
  
# add chart to the worksheet 
# the top-left corner of a chart 
# is anchored to cell E2 . 
worksheet.insert_chart('E2', chart1)
  
# Finally, close the Excel file 
# via the close() method. 
workbook.close()

Salida:
output2
 
Código #3: Trazar el gráfico de porcentaje de área apilada.

Para trazar el gráfico de porcentaje de área apilada en una hoja de Excel, use el método add_chart() con el argumento de palabra clave de tipo ‘área’ y subtipo ‘porcentaje_apilado’ de un objeto de libro de trabajo.

# import xlsxwriter module
import xlsxwriter
  
# Workbook() takes one, non-optional, argument  
# which is the filename that we want to create.
workbook = xlsxwriter.Workbook('chart_area3.xlsx')
  
# The workbook object is then used to add new  
# worksheet via the add_worksheet() method. 
worksheet = workbook.add_worksheet()
  
# Create a new Format object to formats cells
# in worksheets using add_format() method .
  
# here we create bold format object .
bold = workbook.add_format({'bold': 1})
  
# create a data list .
headings = ['Number', 'Batch 1', 'Batch 2']
  
data = [
    [2, 3, 4, 5, 6, 7],
    [80, 80, 100, 60, 50, 100],
    [60, 50, 60, 20, 10, 20],
]
  
# Write a row of data starting from 'A1'
# with bold format .
worksheet.write_row('A1', headings, bold)
  
# Write a column of data starting from
worksheet.write_column('A2', data[0])
worksheet.write_column('B2', data[1])
worksheet.write_column('C2', data[2])
  
# Create a chart object that can be added
# to a worksheet using add_chart() method.
  
# here we create a percent stacked area chart object .
chart1 = workbook.add_chart({'type': 'area', 'subtype': 'percent_stacked'})
  
# Add a data series to a chart
# using add_series method.
  
# Configure the first series.
# = Sheet1 !$A$1 is equivalent to ['Sheet1', 0, 0].
chart1.add_series({
    'name':       '= Sheet1 !$B$1',
    'categories': '= Sheet1 !$A$2:$A$7',
    'values':     '= Sheet1 !$B$2:$B$7',
})
  
# Configure a second series.
# Note use of alternative syntax to define ranges.
# [sheetname, first_row, first_col, last_row, last_col].
chart1.add_series({
    'name':       ['Sheet1', 0, 2],
    'categories': ['Sheet1', 1, 0, 6, 0],
    'values':     ['Sheet1', 1, 2, 6, 2],
})
  
# Add a chart title 
chart1.set_title ({'name': 'Results of data analysis'})
  
# Add x-axis label
chart1.set_x_axis({'name': 'Test number'})
  
# Add y-axis label
chart1.set_y_axis({'name': 'Data length (mm)'})
  
# Set an Excel chart style.
chart1.set_style(11)
  
# add chart to the worksheet 
# the top-left corner of a chart 
# is anchored to cell E2 . 
worksheet.insert_chart('E2', chart1)
  
# Finally, close the Excel file 
# via the close() method. 
workbook.close()

Producción:
salida3

Publicación traducida automáticamente

Artículo escrito por ankthon y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *