stock forecasting in python

there are algorithms in Python to forecast stock market prices. Some popular algorithms include: It’s important to note that stock market forecasting is a challenging task and there’s no guarantee that any forecasting algorithm will be accurate. The stock market is influenced by numerous factors, including economic indicators, geopolitical events, and market sentiment, which can… Continue reading stock forecasting in python

what should we learn that will be critical in next 20 years?

Here are some skills and fields that may be critical in the next 20 years: Note: The specific skills that will be critical can vary depending on the region and industry, but these are some of the broad areas that are likely to be important in the future.

install fbprophet in python

when entering maybe you get this error: or any others and you tried everything!!just try this one and do not install conda or anything else!!: or then start coding easily: you can add news data as an additional regressor to the model by using the add_regressor method in the prophet library. Here’s an example code:… Continue reading install fbprophet in python

Julia language Basics cheat sheet

String Theory! :Use ” or “”” for strings and ‘ for characters. println(“Hello, my name is $name.”) println(“That is $(num_fingers + num_toes) digits in all!!”)string(“I don’t know, but “, 😺, ” is too few.”)s3*s4 To handle errors:@assert *condition* “Error message” Tuple: myfavoriteanimals = (“penguins”, “cats”, “sugargliders”)myfavoriteanimals[1]You cannot do this: myfavoriteanimals[1] = “otters” Named Tuple: myfavoriteanimals =… Continue reading Julia language Basics cheat sheet

اصطلاحات B2B و تعاریف آن‌ها

Company . CS شرح Description مخفف Abbreviation Company درآمد مکرر ماهانه: درآمد مکرر ماهانه (MRR) مقدار درآمد اشتراکی است که یک شرکت می تواند انتظار داشته باشد به صورت ماهانه دریافت کند. محاسبه MRR به معنای جمع ارزش اشتراک ماهانه همه مشتریان در یک ماه معین است. Monthly Recurring Revenue: Monthly Recurring Revenue (MRR) is… Continue reading اصطلاحات B2B و تعاریف آن‌ها

B2B Marketing KPIs abbreviations and descriptions

Abbreviation Description Company . CS MRR Monthly Recurring Revenue: Monthly Recurring Revenue (MRR) is the amount of subscription revenue that a company can expect to receive on a monthly basis. To calculate MRR is to sum the monthly subscription value of all customers in a given month. Company ARR Annual Recurring Revenue: It is defined… Continue reading B2B Marketing KPIs abbreviations and descriptions

Install a jupyter hub with a terminal access to Linux Ubuntu 20.04 with docker

here open a terminal docker ps -a docker pull jupyterhub/jupyterhub docker run -it -p 8000:8000 –name jhubcontainer [jupyterhub/juoyterhub or the ID here] bash apt update apt-get update apt-get install -y git apt-get install npm nodejs python3 python3-pip git nano python3 -m pip install jupyterhub notebook jupyterlab npm install -g configurable-http-proxy apt-get update apt-get install zsh… Continue reading Install a jupyter hub with a terminal access to Linux Ubuntu 20.04 with docker

Understand the difference between sql statements

UNION ALL and UNION LIKE and ILIKE NOT and ! and <> DATE_PART() and DATE_TRUNC() UNION ALL and UNION UNIONThe UNION command is used to select related information from two tables, much like the JOIN command. However, when using the UNION command all selected columns need to be of the same data type. With UNION, only distinct values are selected. UNION ALLThe UNION ALL command is equal to the UNION command, except that UNION ALL selects all values. The difference… Continue reading Understand the difference between sql statements

Automate Teams with your first Python Alerting Bot

In many companies, Microsoft Teams is at the heart of corporate communications. You can talk with colleagues, plan and assist meetings, create Teams to share information and files within a project. As claimed, it is the hub of Microsoft collaboration. Today, let’s see how to empower Teams with automation and use it for sending personal or professional notifications.… Continue reading Automate Teams with your first Python Alerting Bot