Python Forum
Pandas AttributeError: 'DataFrame' object has no attribute 'concat'
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Pandas AttributeError: 'DataFrame' object has no attribute 'concat'
#2
The error line 24
df_total = df_total.concat(df)
does not match your posted code line 24
df = excel_file.parse(sheet_name = sheet)
neither does the next line
df_total = df_total.append(df)
DataFrame does not have a concat method
Pandas has a concat function
https://pandas.pydata.org/docs/reference...oncat.html Wrote:pandas.concat(objs, *, axis=0, join='outer', ignore_index=False, keys=None, levels=None, names=None, verify_integrity=False, sort=False, copy=True)

Concatenate pandas objects along a particular axis.

Allows optional set logic along the other axes.

Can also add a layer of hierarchical indexing on the concatenation axis, which may be useful if the labels are the same (or overlapping) on the passed axis number.
Reply


Messages In This Thread
RE: I need help !!!! - by Yoriz - Feb-17-2023, 03:35 PM
RE: I need help !!!! - by deanhystad - Feb-17-2023, 04:15 PM
RE: I need help !!!! - by Sameer33 - Feb-17-2023, 04:32 PM
RE: I need help !!!! - by deanhystad - Feb-17-2023, 04:53 PM
RE: I need help !!!! - by Sameer33 - Feb-17-2023, 06:01 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Python Alteryx QS-Passing pandas dataframe column inside SQL query where condition sanky1990 0 790 Dec-04-2023, 09:48 PM
Last Post: sanky1990
  getpass.getpass() results in AttributeError: module 'os' has no attribute 'O_NOCTTY' EarthAndMoon 4 858 Oct-03-2023, 02:00 PM
Last Post: deanhystad
  AttributeError: '_tkinter.tkapp' object has no attribute 'username' Konstantin23 4 1,911 Aug-04-2023, 12:41 PM
Last Post: Konstantin23
  DataFRame.concat() nafshar 3 835 Jul-14-2023, 04:41 PM
Last Post: nafshar
  Question on pandas.dataframe merging two colums shomikc 4 901 Jun-29-2023, 11:30 AM
Last Post: snippsat
  Python: Regex is not good for re.search (AttributeError: 'NoneType' object has no att Melcu54 9 1,656 Jun-28-2023, 11:13 AM
Last Post: Melcu54
  Parallel processing - AttributeError: Can't get attribute 'sktimekmeans' Mohana1983 1 812 Jun-22-2023, 02:33 AM
Last Post: woooee
  Python: AttributeError: 'PageObject' object has no attribute 'extract_images' Melcu54 2 4,181 Jun-18-2023, 07:47 PM
Last Post: Melcu54
  Object attribute behavior different in 2 scripts db042190 1 818 Jun-14-2023, 12:37 PM
Last Post: deanhystad
  cx_oracle Error - AttributeError: 'function' object has no attribute 'cursor' birajdarmm 1 2,566 Apr-15-2023, 05:17 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020