Plot is mainly intended for interactive plots and simple cases of programmatic plot generation: import numpy as npimport matplotlib.pyplot as plt x = np.arange(0, 5, 0.1)y = np.sin(x)plt.plot(x, y) The object-oriented API is…
Category: ML|AI|DS
Streamlit is an open-source Python library that makes it easy to create and share beautiful, custom web apps for machine learning and data science. In just a few minutes you can build and deploy powerful…
install the NumPy >> pip install numpy *if you use online notebooks like colab then numpy is built it in. Import NumPy >>import numpy as np Importing/exporting np.loadtxt(‘file.txt’) | From a text file…
PyCaret PyCaret is an open-source, low-code machine learning library in Python that aims to reduce the cycle time from hypothesis to insights. It is well suited for seasoned data scientists who want to increase the productivity of…
First, Install the Power BI desktop software from here. To begin with, we need to import the data. As an example, we have chosen to use the “Top Baby Names in the USA…
This topic uses the Sample – Superstore data source to walk through how to create basic views and explore your data. It shows how your view of data in Tableau evolves through your…
For a lot of machine learning applications, it helps to be able to visualize your data. Visualizing 2 or 3-dimensional data is not that challenging. You can use PCA to reduce that 4-dimensional data…
We’ll build a predictive model to predict if an applicant is able to repay the lending company or not. We will…
AI , ML and deep learning have been trasforming…
PyBot ( Python ChatBot ) A simple chatbot made using wolframalpha API and tkinter. Required Modules : 1.Tkinter 2. Threading 3. Wolframalpha # Import Moduels.. from tkinter import * from tkinter.scrolledtext import ScrolledText from…