<?php
$json = '{ "label": "man", "data":[["0","1.13"], ["1","1.38"], ["2","1.87"], ["3","1.12"], ["4","1.28"]]}';
$structure = json_decode($json, true);
$newData = $structure['data'];
for ($x=0;$x<count($newData);$x++):
for ($i=0;$i<count($newData[$i]);$i++):
$newData[$x][$i] = (float)$newData[$x][$i];
endfor;
endfor;
$structure['data'] = $newData;
print json_encode($structure);
Новый результат:
{"label":"man","data":[[0,1.13],[1,1.38],[2,1.87],[3,1.12],[4,1.28]]}