From the comments, I'm realizing this question stems from the fact I only code in python, which is dynamically-typed so I've never had to deal with this.
I'm seeing "downcast" used with regard to the altering of a pandas.DataFrame
column-type, from float64 ==>
float32. Now...I mean...I think I get the "down" part since 64 > 64/2
, but I still don't think I get it completely.
What does "downcast" mean, specifically?