You are trying to SUM CharField, not Integer, that's why you see the error. So you need to make that field integer, or if for any reason you need it to left as CharField:
from django.db.models.functions import Cast
Income.objects.filter(
Q(title='Salary')| Q(title='Bonus')
).annotate(
total_as_float=Cast('Total', FloatField()
).aggregate(Sum('total_as_float'))
If you want to know more about the Data Science then do check out the following Data Science which will help you in understanding Data Science from scratch