Chile government debt to gdp
Chile government debt to gdp: 39.4 (4.23%)
Last Update: December 31, 2024
Chile government debt to gdp closed down 39.4 as of December 31, 2024 from 37.8 from the previous month and 11.9 from last year.
Chile government debt to gdp Analytics & Data
MacroVar Free Open Data enables you to Embed, Share and Download Chile government debt to gdp historical data, charts and analysis in your website and with others.
Chile government debt to gdp closing prices of the last 24 values are displayed below. Sign up free to download the full historical data series using MacroVar Web/Excel or API.
Embed Chile government debt to gdp Chart or Data Table in your website or Share this chart and data table with your friends.
Chile government debt to gdp
Date |
Values |
2024-12-31 |
39.4 |
2023-12-31 |
37.8 |
2022-12-31 |
38 |
2021-12-31 |
36.3 |
2020-12-31 |
32.5 |
2019-12-31 |
27.9 |
2018-12-31 |
25.6 |
2017-12-31 |
23.6 |
2016-12-31 |
21 |
2015-12-31 |
17.3 |
2014-12-31 |
15 |
2013-12-31 |
12.7 |
2012-12-31 |
11.9 |
2011-12-31 |
11.1 |
2010-12-31 |
8.6 |
2009-12-31 |
5.8 |
2008-12-31 |
4.9 |
2007-12-31 |
3.9 |
2006-12-31 |
5 |
2005-12-31 |
7 |
2004-12-31 |
10.3 |
2003-12-31 |
12.7 |
2002-12-31 |
15.2 |
2001-12-31 |
14.5 |
Get notified instantly when MacroVar new signals are available for
Chile government debt to gdp.
Create your free account
Share the specific page using the buttons below.
\n' +
'\n'+
'
';
$(".after-download-popup .embed-code .embed-type-chart .embed-code-copy textarea").val(codeChart);
var codeTable =
'\n' +
'\n'+
'
';
$(".after-download-popup .embed-code .embed-type-table .embed-code-copy textarea").val(codeTable);
},
error: function (request, status, error) {
//console.log(request.responseText + "error =" + error);
$(".after-download-popup .popup-body").html("");
var errorHtml = $("
").appendTo($(".after-download-popup .popup-body")).css('color','red').text("Invalid Wid");
},
complete: function(result) {
//open the popup
$(".popup-overlay.after-download-popup, .popup-content").addClass("active");
$(".after-download-popup").show();
}
});
});
//download image data
$("#chart-tabs-block a.download-image").click(function () {
var wid = "87665";
console.log("---Downloading data -image");
var apiUrl = "https://macrovar.com/wp-json/mesmerize-api/v1/market-data-wid";
$.ajax({
type: "POST",
url: apiUrl,
crossDomain: true,
data: {"wid":wid},
dataType: "json",
success: function (result) {
//get returned info
console.log(result);
var data = result['data'];
var variableDetail = result['variable-detail'];
//update the content of the popup that opens after download
//set the embed link title
$(".after-download-popup .embed-code-title").text(variableDetail['cnt'] + ' ' + variableDetail['indicator'] + ' ' + variableDetail['tp']);
//set the download data type in the success message
$(".after-download-popup .download-success-message .download-data-type").text("image");
//set the embed code to copy
var ifw = "800px", ifh = "420px";
var codeChart =
'\n' +
'\n'+
'
';
$(".after-download-popup .embed-code .embed-type-chart .embed-code-copy textarea").val(codeChart);
var codeTable =
'\n' +
'\n'+
'
';
$(".after-download-popup .embed-code .embed-type-table .embed-code-copy textarea").val(codeTable);
//create canvas
var chartContainer = $("
" ).appendTo( $("body") );
var canvas = $("#macrovar-chart");
//prepare data
var labels = [];
var dataValue = [];
data.forEach( (row, index) => {
labels[index] = row['date'];
dataValue[index] = row['value'];
});
var maxTicksLimit = data.length / 5;
var myChart = new Chart(canvas, {
type: 'line',
data: {
labels: labels,
datasets: [{
data: dataValue,
fill: false,
borderColor: 'rgb(45, 121, 222)',
tension: 0.1
}]
},
options: {
responsive: true,
scales: {
y: {
beginAtZero: false,
grid:{
display:false
}
},
x:{
ticks: {
maxTicksLimit: maxTicksLimit
}
}
},
maintainAspectRatio: false,
plugins: {
legend: {
display: false
},
subtitle: {
display: true,
align: 'center',
position: 'left',
text: variableDetail['var'],
}
},
animation: {
onComplete: function () {
// Get the chart's base64 image string
var a = document.createElement('a');
a.href = myChart.toBase64Image();
a.download = variableDetail['var']+'.png';
// Trigger the download
a.click();
//remove chart
chartContainer.remove();
},
}
},
plugins: [{
beforeDraw: function(chart) {
//draw background
var ctx = chart.ctx;
ctx.fillStyle = 'white';
ctx.fillRect(0, 0, chart.width, chart.height);
}
}]
});
},
error: function (request, status, error) {
console.log(request.responseText + "error =" + error);
$(".after-download-popup .popup-body").html("");
var errorHtml = $("
").appendTo($(".after-download-popup .popup-body")).css('color','red').text("Invalid Wid");
},
complete: function(result) {
//open the popup
$(".popup-overlay.after-download-popup, .popup-content").addClass("active");
}
});
});
//copy code to clipborad - in the popup
$(".after-download-popup .embed-code .embed-code-copy textarea").click(function(e){
e.preventDefault();
$(this).select();
document.execCommand('copy');
console.log("--code copied to clipboard");
});
});
function generateEmbedCode() {
var tabs = $('#chart-tabs-block'),
id = $('.select-embed li.active', tabs).data('id'),
code = '',
ifw = $('[name="share-width"]', tabs).val(),
ifh = $('[name="share-height"]', tabs).val(),
wid = "29976";
if (id && ifw && ifh) {
if (id == 'chart') {
code = '
source:
macrovar.com';
/*code =
'\n' +
'\n'+
'
';
*/
} else if (id =='data') {
//let data = $('#data table', tabs).html();
// data = data.replace(/[\t\n\r]|[\s]{2,}/gm, '');
//code = '
';
code =
'\n' +
'\n'+
'
';
} else if (id =='txt') {
code =
'\n' +
'\n'+
'
\n\n'+
'*** In your webpage place the following code to display the latest up to date value of this indicator. ***\n'+
'
';
}
$('.copycode textarea', tabs).val(code);
}
}
function previewEmbed(e) {
e.preventDefault();
var tabs = $('#chart-tabs-block'),
id = $('.select-embed li.active', tabs).data('id');
if (id == 'chart') {
window.open('https://macrovar.com/macroeconomics/Chile-government-debt-to-gdp.png','_blank');
} else {
$('button#data-tab').click();
}
}
Chile government debt to gdp Statistics
Indicator |
Symbol |
Actual |
Previous |
M/M% |
Y/Y% |
Trend |
Slope |
Percentile |
Update |
government debt to gdp |
cl.govdebtgdp |
39.4 |
37.8 |
4 |
231 |
UP |
UP |
0 |
2024-12-31 |
Chile government debt to gdp Quantitative Analysis, Charts & Factors
Chile government debt to gdp Historical Data
The
MacroVar database offers
free access to historical data for the Chile government debt to gdp, dating back to 1950. This extensive dataset is
readily available through MacroVar versatile platforms, including a user-friendly web interface, a robust Python API, and convenient Excel integration. By leveraging these tools, users can efficiently retrieve and analyze
decades of Chile government debt to gdp data, supporting a wide range of research, financial analysis, and decision-making processes.
What is the Chile government debt to gdp
Chile's government debt to GDP ratio is a measure that indicates the country's ability to repay its debt in relation to its overall economic output. A high debt to GDP ratio can be a cause for concern as it may indicate that the government is accumulating too much debt relative to its economic capacity. In Chile's case, the government debt to GDP ratio has been relatively stable in recent years, hovering around 25-30%. This suggests that Chile's government has been able to manage its debt levels effectively and has not accumulated excessive amounts of debt. However, it is important for the government to continue monitoring and managing its debt levels to ensure long-term fiscal sustainability.