Convert fractions to decimal numbers
Convert percents to decimal numbers
This little web site lets you convert fractions or percents to decimals numbers.
Here's a random fraction converted to decimal:
as decimal is approximately: 0.06024 (Rounded to fifth decimal place)
google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Top', 'Bottom'],
['0.06024', 0.06024],
['0.93976', 0.93976],
]);
var options = {
// title: ' over '
};
var chart = new google.visualization.PieChart(document.getElementById('piechart'));
chart.draw(data, options);
}
">