Nov 9, 2021Python - Text CAPTCHA - captchaCAPTCHA / Completely Automated Public Turing test to tell Computers and Humans Apart / package is for authentication, provides entry to...
Sep 20, 2021Python - Next word prediction - nltkWe can change customer attention in text document. If we use in an article more words, which are focused on group, a reader will focus...
Sep 13, 2021Python - Triplets, Coprime and Prime numbersLets remember some easy calculation, either prime numbers, coprime numbers or triplets are important part of a base for more...
Aug 13, 2021Python - Sentiment Analytics - TweepyThere are many areas, how sentiment analytics could bring better business performance. Python offers various approaches to sentiment and...
Jul 26, 2021Python - Economics - Capital Intensity - Line Chart - MatplotlibThere are 3 basic types of market efficiency: allocative, operational and informative. Assets per employee is one of many operational...
Jul 21, 2021Python - Bar Chart - MatplotlibBasic Bar Chart example to compare Total Assets by Bank in years 2011 - 2020. from pandas import read_csv from matplotlib import pyplot...
May 21, 2021Python - Binary Bootstrap SampleThe code provides Yes/No prediction, fitting binary bootstrap sample for mistakes in data entries. Leo Breiman was (1928 – 2005)...
May 18, 2021Python - Google Colab read csvIt is possible to read csv into Google Colab by several ways. For reading csv from online folder basic read w/o permission is enough,...
May 17, 2021Python - Replace missing values - NumpyReplace missing values using numpy and pandas. Treating missing values In [16]: import numpy as np import pandas as pd from pandas...
May 17, 2021Python - Basics - Pandasimport pandas as pd pwd # read file from file system df=pd.read_csv('bevolkerung.csv’) # read file from github from pandas import Series,...