If you'd like to exclude events related to a specific Resource-ID from My Account's History tab, you would need to go to the template My Account Payments Components and update the line:
<tr ng-repeat="event in events">
With this:
<tr ng-repeat="event in events" ng-if="event.data.rid != '<RID>'">
And replace the <RID> with the desired resource ID from your Piano application.