#data
Read more stories on Hashnode
Articles with this tag
To interact with AWS in Python, there is the Boto3 library. 1. AWS S3 S3 is the AWS Storage solution. import boto3 # Generate the boto3 client for...
Spark = tool for doing parallel computation with large datasets. Spark lets you spread data and computations over clusters with multiple nodes.pyspark...
In the Azure Portal, select your Storage Account, go to "Tables", and write down the Table's URL. Then, in the same page go to "Access keys",...
Download Data using curl https://curl.haxx.se/download.html curl -O https://websitename.com/file001.txt #-O -> download file with it's name curl...
1. Importing Data from Flat Files and Spreadsheets read_csv for all flat files import pandas as pd data = pd.read_csv('file.csv') data =...
import matplotlib.pyplot as plt import numpy as np my dataframe is df #plot for see if there is a linear relation plt.scatter(col1,...