New inflation data factors into Federal Reserve's interest rates decision
New inflation data factors into Federal Reserve’s interest rates decision
The Federal Reserve is monitoring new inflation data as it weighs potential interest rate adjustments due to a shaky job market and ongoing economic challenges.
We’re looking at core inflation, which cuts out costs for food and energy. The Federal Reserve has kept interest rates higher to try to drive that number down, but *** shaky job market may make them reconsider. Risks to inflation are tilted to the upside. And risks to employment to the downside, *** challenging situation. Federal Reserve Chair Jerome Powell signaled the board may lower interest rates next month, even as inflation remains above their 2% annual target. Today’s data shows prices are up 2.9% since last year. Lower interest rates would make it cheaper to borrow money, but could encourage people to spend more, which drives up prices. Powell says President Donald Trump’s ever-changing tariffs make it difficult to predict how they. prices. An economist we spoke with says the president’s policies are broadly impacting the economy. The mass deportation policy, it’s not targeting criminals. They’re taking people off of work sites out of the fields and agriculture, off of construction sites. He also suggests utility prices and electricity and water are going up because of investments in data centers and Republican budget cuts diversifying energy sources at the White House, I’m Rachel Herzheimer.
Advertisement
New inflation data factors into Federal Reserve’s interest rates decision
The Federal Reserve is monitoring new inflation data as it weighs potential interest rate adjustments due to a shaky job market and ongoing economic challenges.
Updated: 9:53 AM EDT Aug 29, 2025
The Federal Reserve is closely watching new inflation data released Friday amid concerns of a price spike and an uncertain job market. The focus is on core inflation, which excludes the volatile costs of food and energy. The Federal Reserve has maintained higher interest rates to curb inflation, but a shaky job market may prompt a reconsideration of this approach.Federal Reserve Chair Jerome Powell said, “Risks to inflation are tilted to the upside, and risks to employment to the downside — a challenging situation.” Powell has indicated that the board may lower interest rates next month, even though inflation remains above its 2% annual target. Friday’s data showed a 2.9% increase in prices compared to last year.Lowering interest rates would make borrowing money cheaper, potentially encouraging spending, which could drive up prices. Powell noted that President Donald Trump’s fluctuating tariffs complicate predictions on their impact on prices. Adam Hersh, senior economist at the Economic Policy Institute, said the president’s policies are broadly affecting the economy. “The mass deportation policy is not targeting criminals. They’re taking people off of worksites, out of the fields and agriculture, off of construction sites.”Hersh also said utility prices for electricity and water are reportedly rising due to investments in data centers and Republican budget cuts to diversifying energy sources.
The Federal Reserve is closely watching new inflation data released Friday amid concerns of a price spike and an uncertain job market.
The focus is on core inflation, which excludes the volatile costs of food and energy. The Federal Reserve has maintained higher interest rates to curb inflation, but a shaky job market may prompt a reconsideration of this approach.
`;
}
function initializeWeatherBox(container) {
function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
});
clickedElement.classList.add(‘open’);
container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
});
var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
}
}
function loadWeatherData() {
var location = { zip: window.DEFAULT_ZIPCODE };
try {
var storedLocation = localStorage.getItem(‘htv.zip.last’);
if (storedLocation) {
location = JSON.parse(storedLocation);
}
} catch (e) {}
var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;
if (window.fetch) {
fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
});
}
}
function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (weatherWatchHeader && weatherData.alerts_count > 0) {
weatherWatchHeader.className = ‘weather-watch-header has-alerts’;
var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
weatherWatchLink.href = ‘/alerts’;
}
}
}
function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) tempEl.textContent = weatherData.current.temp_f || ”;
var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className = ‘weather-grid–current-icon weather-current-icon icon icon-weather-‘ + weatherData.current.icon_name;
}
var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) skyEl.textContent = weatherData.current.sky || ”;
var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) feelsEl.textContent = (weatherData.current.feels_like_f || weatherData.current.temp_f || ”) + ‘°F’;
}
}
function updateForecastTabs(weatherData) {
if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html = ”;
var maxHours = Math.min(5, weatherData.hourly.length);
for (var i = 0; i < maxHours; i++) {
var hour = weatherData.hourly[i];
html += generateForecastItem({
timeLabel: hour.hour_display,
iconName: hour.icon_name,
primaryTemp: hour.temp_f,
secondaryInfo: hour.precip_chance + ‘%’
});
}
hourlyContainer.innerHTML = html;
}
}
if (weatherData.daily) {
var dailyContainer = container.querySelector(‘.weather-daily-forecast’);
if (dailyContainer) {
var html = ”;
var maxDays = Math.min(5, weatherData.daily.length);
for (var i = 0; i < maxDays; i++) {
var day = weatherData.daily[i];
var dayName = getShortDayName(day.day);
html += generateForecastItem({
timeLabel: dayName,
iconName: day.icon_name,
primaryTemp: day.high_f,
secondaryInfo: day.low_f + ‘°’
});
}
dailyContainer.innerHTML = html;
}
}
}
function getShortDayName(dayName) {
switch (dayName) {
case ‘Today’:
return ‘Today’;
case ‘Tomorrow’:
return ‘Tmrw’;
case ‘Sunday’:
return ‘Sun’;
case ‘Monday’:
return ‘Mon’;
case ‘Tuesday’:
return ‘Tue’;
case ‘Wednesday’:
return ‘Wed’;
case ‘Thursday’:
return ‘Thu’;
case ‘Friday’:
return ‘Fri’;
case ‘Saturday’:
return ‘Sat’;
default:
return dayName;
}
}
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.onclick = function() {
switchWeatherTab(this.getAttribute(‘data-tab-id’), this);
return false;
};
});
loadWeatherData();
}
document.querySelectorAll(‘.weather-sidebar’).forEach(function(weatherBox) {
initializeWeatherBox(weatherBox);
});
document.addEventListener(‘fullscreenchange’, function() {
var fullscreenElement = document.fullscreenElement;
if (!fullscreenElement) {
document.querySelector(‘.weather-box-container’).querySelectorAll(‘.fa-times’).forEach(function(icon) {
icon.classList.remove(‘fa-times’);
icon.classList.add(‘fa-expand’);
});
}
});
});
Advertisement
Federal Reserve Chair Jerome Powell said, “Risks to inflation are tilted to the upside, and risks to employment to the downside — a challenging situation.”
Powell has indicated that the board may lower interest rates next month, even though inflation remains above its 2% annual target. Friday’s data showed a 2.9% increase in prices compared to last year.
Lowering interest rates would make borrowing money cheaper, potentially encouraging spending, which could drive up prices. Powell noted that President Donald Trump’s fluctuating tariffs complicate predictions on their impact on prices.
Adam Hersh, senior economist at the Economic Policy Institute, said the president’s policies are broadly affecting the economy. “The mass deportation policy is not targeting criminals. They’re taking people off of worksites, out of the fields and agriculture, off of construction sites.”
Hersh also said utility prices for electricity and water are reportedly rising due to investments in data centers and Republican budget cuts to diversifying energy sources.