Sunday , September 8 2024

Machine Learning

JSON and Quandl API Data – Data Science Tutorials

JSON and Quandl API Data - Data Science Tutorials

09 – JSON and Quandl API Data JSON and Quandl API Data¶ https://data.nasdaq.com/data/BSE-bombay-stock-exchange In [ ]: pip install quandl Get Data by Quandl API¶ In [1]: import quandl data = quandl.get("BSE/BOM543207", authtoken="x8VdDXzBty3iGsaRLTVs") data Out[1]: Open High Low Close WAP No. of Shares No. of Trades Total Turnover Deliverable Quantity % Deli. Qty to …

Read More »

Sorting in Pandas – Data Science Tutorials

Sorting in Pandas

07- Sorting and Ranking Sorting in Pandas¶There are two kinds of sorting available in pandas: Sort by index Sort by value In [1]: #import the libraries import pandas as pd import numpy as np Sorting for Series¶Sort by index Sorting by index can be done by using sort_index command. In [2]: s=pd.Series([67,45,23,6,12,57],index=["e","d","a","f","b","c"]) …

Read More »

Pandas String Operations – Data Science Tutorials

Pandas String Operations

06 – String Operations Pands String Operations¶Pandas provides a set of string functions which make it easy to operate on string data. Most importantly, these functions ignore (or exclude) missing/NaN values. lower(): Converts strings in the Series/Index to lower case. upper(): Converts strings in the Series/Index to upper case. len(): …

Read More »

Descriptive Statistics for Pandas DataFrame – Data Science Tutorials

Descriptive Statistics for Pandas DataFrame

05 – Descriptive Statistics and Stats Operations 1. Descriptive Statistics for Pandas DataFrame¶ In [1]: import pandas as pd import numpy as np In [2]: data = {'Name':pd.Series(['Akshay','Rajat','Robin','Kapil','James','Cyril']),'Age':pd.Series([25,26,29,27,23,21]),'Rating':pd.Series([4.23,2.35,1.56,3.20,4.62,3.99])} df = pd.DataFrame(data) df Out[2]: Name Age Rating 0 Akshay 25 4.23 1 Rajat 26 2.35 2 Robin 29 1.56 3 Kapil 27 3.20 …

Read More »

Pandas DataFrame – Data Science Tutorials

Pandas DataFrame

03- DataFrame DataFrames¶A Data frame is a two-dimensional data structure, i.e., data is aligned in a tabular fashion in rows and columns. Features of DataFrame Potentially columns are of different types Size : Mutable Labeled axes (rows and columns) Can Perform Arithmetic operations on rows and columns A pandas DataFrame …

Read More »

Introduction To Pandas – Data Science Tutorials

Pandas is a Python library used for working with data sets. It has functions for analyzing, cleaning, exploring, and manipulating data. The name “Pandas” has a reference to both “Panel Data”, and “Python Data Analysis” and was created by Wes McKinney in 2008. It provides special data structures and operations …

Read More »