About 550,000 results
Open links in new tab
  1. Reading an Excel file in python using pandas - Stack Overflow

    Thought i should add here, that if you want to access rows or columns to loop through them, you do this: import pandas as pd # open the file xlsx = pd.ExcelFile("PATH\FileName.xlsx") # get …

  2. python - Using Pandas to pd.read_excel () for multiple (but not all ...

    I have a large spreadsheet file (.xlsx) that I'm processing using python pandas. It happens that I need data from two tabs (sheets) in that large file. One of the tabs has a ton of data and the oth...

  3. how to read certain columns from Excel using Pandas - Python

    I am reading from an Excel sheet and I want to read certain columns: column 0 because it is the row-index, and columns 22:37. Now here is what I do: import pandas as pd import numpy as …

  4. How to read a .xlsx file using the pandas Library in iPython?

    I want to read a .xlsx file using the Pandas Library of python and port the data to a postgreSQL table. All I could do up until now is: import pandas as pd data = pd.ExcelFile("*File Name*")

  5. python - Faster way to read Excel files to pandas dataframe - Stack ...

    Feb 27, 2015 · In my experience, Pandas read_excel() works fine with Excel files with multiple sheets. As suggested in Using Pandas to read multiple worksheets, if you assign sheet_name …

  6. Python pandas: how to specify data types when reading an Excel …

    Sep 15, 2015 · I am importing an excel file into a pandas dataframe with the pandas.read_excel() function. One of the columns is the primary key of the table: it's all numbers, but it's stored as …

  7. Python: How to read and load an excel file from AWS S3?

    Nov 23, 2018 · I have uploaded an excel file to AWS S3 bucket and now I want to read it in python. Any help would be appreciated. Here is what I have achieved so far, import boto3 …

  8. Pandas: Read specific Excel cell value into a variable

    Reading an Excel file using Pandas is going to default to a dataframe. You don't need an entire table, just one cell. The way I do it is to make that cell a header, for example: # Read Excel …

  9. Read sharepoint excel file with python pandas - Stack Overflow

    Oct 7, 2021 · "I'm trying to use this code from How to read SharePoint Online (Office365) Excel files into Python specifically pandas with Work or School Account? answers but a get …

  10. How to get read excel data into an array with python

    You can also have a look at the xlrd module - see python-excel.org - but yes, pandas will be a good choice if you're doing analysis work/plotting on the data - I suggest starting with the docs …

Refresh