I recently helped my friend process their financial data with Python. We came across this issue with Windows 10 running Python 3.7 throwing errors when I was trying to save a pandas data frame to an Microsoft Excel format .xlsx file. So here is the Python code which runs perfectly on a Mac running Python… Continue reading Saving dataframe in Excel with Pandas
Tag: python
Forecasting Time Series Data with Prophet
In my last post, I used ARIMA model to carry out forecasting against a time series dataset. Although it worked, it is a bit too complicated and hard to understand for non expert users like me. Recently I came across Prophet which is an awesome library from Facebook for carrying out forecasting with time series… Continue reading Forecasting Time Series Data with Prophet
Time series forecasting with Auto ARMIA
Recently I came across some interesting algorithms and tools that can help with time series data analysis and forecasting. I found them very interesting from a developer's perspective. So I think I need to write something about it. How to do forecasting for sales, inventory and other time based data? I asked the question to… Continue reading Time series forecasting with Auto ARMIA
Checking out Keras with Tensorflow in Google Colab
As we all know that Machine Learning especially Deep Learning with Neural Network has become one of the top trending tech topics in these days. I was trying to get my head around machine learning and AI but I found it does have a steep learning curve for anyone new to this domain. I recently… Continue reading Checking out Keras with Tensorflow in Google Colab