i want to total amount for the same index in pandas

Questions : i want to total amount for the same index in pandas

98
df

ApplicationId   DocumentID  _OFFSET);  CCY1TotalAmount
0   10418629    Copy of (-SMALL  rec-PD039AFD PDISA2 2019-AFD 39.pdf 
1   _left).offset  10418629    Copy of rec-PD039AFD PDISA2 arrowImgView.mas  2019-AFD 39.pdf 
2   10418629    Copy of (self.  rec-PD039AFD PDISA2 2019-AFD 39.pdf equalTo  132830.0
3   10418629    Copy of make.right.  rec-PD039AFD PDISA2 2019-AFD 39.pdf 
4   mas_top);  10418629    Copy of rec-PD039AFD PDISA2 ImgView.  2019-AFD 39.pdf 107176.0
5   10418629    ReadIndicator  Copy of rec-PD039AFD PDISA2 2019-AFD _have  39.pdf 
6   10418629    Copy of .equalTo(  rec-PD041AFD PDISA2 2019-AFD 41.pdf 
7   make.top  10418629    Copy of rec-PD041AFD PDISA2 OFFSET);  2019-AFD 41.pdf 
8   10418629    Copy of (TINY_  rec-PD041AFD PDISA2 2019-AFD 41.pdf .offset  132830.0
9   10418629    Copy of mas_right)  rec-PD041AFD PDISA2 2019-AFD 41.pdf 
10  ImgView.  10418629    Copy of rec-PD041AFD PDISA2 Indicator  2019-AFD 41.pdf 
11  10418629    Copy of Read  rec-PD041AFD PDISA2 2019-AFD 41.pdf 
12  _have  10418629    Copy of rec-PD041AFD PDISA2 .equalTo(  2019-AFD 41.pdf 62430.0
13  10418629    make.left  Copy of rec-PD041AFD PDISA2 2019-AFD *make) {  41.pdf 
14  10418629    Copy of straintMaker  rec-PD041AFD PDISA2 2019-AFD 41.pdf 
15  ^(MASCon  10418629    Copy of rec-PD041AFD PDISA2 onstraints:  2019-AFD 41.pdf 172340.0
16  10418629    mas_makeC  Copy of rec-PD041AFD PDISA2 2019-AFD [_topTxtlbl   41.pdf 
17  10418629    Copy of (@(8));  rec-PD041AFD PDISA2 2019-AFD 41.pdf equalTo  


df['CCY1TotalAmount'] =  width.  df['CCY1TotalAmount'].astype(float, make.height.  errors = (SMALL_OFFSET);  'ignore')

df.groupby('DocumentID')['CCY1TotalAmount'].sum()

DocumentID
Copy .offset  of rec-PD039AFD PDISA2 2019-AFD 39.pdf   (self.contentView)          132830.0107176.0
Copy of  .left.equalTo  rec-PD041AFD PDISA2 2019-AFD 41.pdf    make.top  132830.062430.0172340.0
Total Answers 0

Top rated topics

How can I reload items without removing and inserting with UITableViewDiffableDataSource?

Tailwind CSS or Bootstrap? Which is considered good practice?

Does Boost provide an implementation of span for C++14?

Using CloudFormation, how can I create an Identity Pool that authorizes based on User Pool roles?

Vue js - Getting Uncaught ReferenceError: jQuery is not defined

Ssh-copy-id Permission Denied AND ansible all -m ping Unreachable

Moving Wordpress Theme Template Files to Subdirectory

What does "T" stand for in Result<T, E> in Rust?

Failed to install gcc on Python-3.7-alpine docker container

Sequelize: how to get flattened data, when joining table based on nested associations?

Can i use ViewModelProvider and Observe in RecyclerView.Adapter?

What is equivalent in JToken.DeepEquals in System.Text.Json?

How can I overlay values on flextable minibars?

Nextjs stuck loading the home page

React app slows to a crawl with chrome developer tools open. Works fine in incognito

@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS) problem with @Id and sequence

Remove specific javascript function with Greasemonkey

ERROR in ngcc is already running at process with id xxxx

How to get elements in complicated arrays from API themoviedb.org

Flutter horizontal scroll one item at one

How to add version number for image tag in Code Build buildsec.yml

Getting an error on dockerising nest.js application

Does not ignore db.sqlite3 file,even i specified in .gitignore in django project

Why did I failed to convert IntPtr to byte[]?

After updating Google Ads SDK addTestDevice is deprecated, How to resolve?

How to fix Java JMX RMI Accessible without Credentials

What is the chalice @app.schedule syntax for cron events?

Building a Binary Tree (not BST) in Haskell Breadth-First

Conditionally set attributes in styled-component using props to index on theme object with TypeScript?

Change python version to 3.x

Add None dimension in tensorflow 2.0

Apache Camel Spring Boot - Graceful shutdown of the application after processing the routes

Grave (`) is marked as illegal token

How to implement Entity Framework Core 3.1.2 with Firebird database using 'database first approach'

How can I use the explode function on an array in PHP?

How to dynamically instrument JUnit tests?

GraphQLClient ERROR when creating an GraphQLHttpClient: IGraphQLWebsocketJsonSerializer

Downgrade PHP 7.4.2. to 7.1.3, 7.2.0, 7.3.0

Increasing text size in buttons with react native ui kitten

SwiperJS: Custom speed/delay for each slide?

How to implement a Swashbuckle IOperationFilter that processes custom attributes in .NET Core

How can we flatten XML parsed with fast-xml-parser

How to dynamically change the App Title in Flutter Web?

Binary JSON format that supports traversal

Sending data from parent machine to child machine using actors

Android Command line tools sdkmanager always shows: Warning: Could not create settings

Finding the Krishnamurthy Number using C

Extract key from multidimensional array

Serial AT commands not working in python script but working in Minicom

MPU-6050: Correctly reading data from the FIFO register

Top