คำถามติดแท็ก columnname

9
ชื่อหรือชื่อคอลัมน์ดัชนีหมีแพนด้า
ฉันจะรับชื่อคอลัมน์ดัชนีใน python python ได้อย่างไร นี่คือตัวอย่างดาต้าเฟรม: Column 1 Index Title Apples 1 Oranges 2 Puppies 3 Ducks 4 สิ่งที่ฉันพยายามทำคือรับ / ตั้งค่าชื่อดัชนีของไฟล์ข้อมูล นี่คือสิ่งที่ฉันพยายาม: import pandas as pd data = {'Column 1' : [1., 2., 3., 4.], 'Index Title' : ["Apples", "Oranges", "Puppies", "Ducks"]} df = pd.DataFrame(data) df.index = df["Index Title"] del df["Index …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.