Posts

Showing posts from August, 2020

Download Python Codes In Anaconda

 Wanna save your work and codes in your local machine from Jupyter notebook , anaconda ? Follow the steps... File-->Download As -->Choose your desired format to save your work. Enjoy ! #python #datascience #jupyternotebook #anaconda #downloadPythonCodes #download #saveYourCodesInAnaconda #saveYourCodesInJupyterNotebook

NumPy Codes and import

Image
 First open Anaconda, then launch the jupyter notebook. Then create new python 3 file. Here we will discuss NumPy arrays and codes. Let's print an array. Oh ! Was it easy ? Yes .It was. Now we will import numpy and use that to assign the array to a variable, and some other things also will try ... Here, I created an array . Then I imported NumPy as np . Then I used np to set the array to the variable arr. 2D array NumPy There are 2 braces in the beginning so 2D array.3 rows 3 columns. arrange is used to quickly generate an array in NumPy of certain condition or in normal as per above example. link space --------------: here the third argument is considered as no of points as you want where as arrange take it as steps as you want. identity matrix randn() shows a standard normal distribution. randn() in 2  Dimension Printing random integer using randint() max() for finding the highest number in the array and min() for the lowest number. argmax() used to show the index of the max...