Wednesday, June 5, 2019

Python edit categorical data

Packages like scanpy uses categorical data to store information. To manipulate it, you need to convert it to string format first

thing = [str(i) for i in thing]

No comments:

Post a Comment