Python에서 Excel 데이터를 처리할 때 사용자는 새 시트를 기존 Excel 파일에 저장해야 하는 문제에 직면할 수 있습니다. . 이 가이드는 Pandas 라이브러리를 사용하여 "xlsxwriter" 엔진의 제한 사항과 "openpyxl" 엔진 구현을 다루는 솔루션을 제공합니다.
주어진 코드에서 사용자가 "x1"과 "x2"라는 두 시트로 구성된 Excel 파일을 만듭니다. 그러나 새 시트 "x3" 및 "x4"를 추가하려고 하면 원본 데이터가 무시됩니다. 이는 "xlsxwriter" 엔진이 데이터를 새 파일에만 저장하거나 기존 파일을 덮어쓰기 때문에 발생합니다.
새 시트를 추가하는 동안 기존 데이터를 보존하려면 다음을 사용하세요. "openpyxl" 엔진. 다음 코드는 이 접근 방식을 보여줍니다.
<code class="python">import pandas as pd import numpy as np from openpyxl import load_workbook path = r"C:\Users\fedel\Desktop\excelData\PhD_data.xlsx" book = load_workbook(path) # Load the existing Excel file writer = pd.ExcelWriter(path, engine='openpyxl') # Create a Pandas writer connected to the workbook writer.book = book # Assign the workbook to the Pandas writer x3 = np.random.randn(100, 2) df3 = pd.DataFrame(x3) x4 = np.random.randn(100, 2) df4 = pd.DataFrame(x4) df3.to_excel(writer, sheet_name='x3') # Write the new dataframes to the existing file df4.to_excel(writer, sheet_name='x4') writer.close() # Save the changes to the file</code>
주어진 링크의 제안 코드:
위 내용은 Pandas를 사용하여 기존 Excel 파일에 새 시트를 추가하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!