Posts

Showing posts from December, 2024

Time series Forecasting with SARIMAX: A Guide to Predicting the Future Using Python

Predicting stock prices is a challenging yet exciting task in the field of data science. One of the most popular time series forecasting techniques is SARIMAX (Seasonal Autoregressive Integrated Moving Average with Exogenous Regressors) , which combines autoregressive models with seasonality and external factors. In this blog post, we’ll walk through how to use SARIMAX to forecast stock prices for multiple companies over the next 30 days using Python. Why SARIMAX for Stock Price Prediction? Stock prices often exhibit both trends and seasonality over time. SARIMAX is a powerful tool for modeling time series data, especially when there are seasonal components and external variables (like the day of the week) influencing the prices. This technique builds on the ARIMA model by adding two essential features: Seasonal Component : Captures the seasonal trends in the data (e.g., weekly cycles). Exogenous Variables (Exog) : Incorporates external variables like the day of the week, which m...

JMeter Quick Hacks

Add JMeter application to PATH variable Windows machine Open the System Properties window and click the Environment Variables button. In the System variables section, locate the Path variable, select it, and click Edit. In the Edit Environment Variable window, click New and add the full path to the bin directory where JMeter is located (e.g., C:\apache-jmeter\bin). Mac/Linux machine Open a terminal window. Edit your shell profile file (depending on the shell you're using, this could be .bashrc, .bash_profile, .zshrc, etc.). For example, if you're using Bash , run: nano ~/.bash_profile If you're using Zsh , run: nano ~/.zshrc Add the following line to the end of the file, replacing the path with your JMeter bin directory: export PATH=$PATH:/opt/apache-jmeter/bin Save the file and exit Increase Heap Size of JMeter Application For windows -  Modify the below command the jmeter.bat file in "jmeter/bin" folder Ex - set HEAP=-Xms1g -Xmx1g -XX:MaxMetaspaceSize=25...