Python Data Science Handbook
Python Data Science Handbook: full text in Jupyter Notebooks. This repository contains the entire Python Data Science Handbook, in the form of (free!) Jupyter notebooks.
Creator: Jake Vanderplas
Starsโญ๏ธ: 39k
Fork: 17.1K
Repo: https://github.com/jakevdp/PythonDataScienceHandbook
For more, join https://t.me/pythonanalyst
Python Data Science Handbook: full text in Jupyter Notebooks. This repository contains the entire Python Data Science Handbook, in the form of (free!) Jupyter notebooks.
Creator: Jake Vanderplas
Starsโญ๏ธ: 39k
Fork: 17.1K
Repo: https://github.com/jakevdp/PythonDataScienceHandbook
For more, join https://t.me/pythonanalyst
๐2
Essential NumPy Functions for Data Analysis
Array Creation:
np.array() - Create an array from a list.
np.zeros((rows, cols)) - Create an array filled with zeros.
np.ones((rows, cols)) - Create an array filled with ones.
np.arange(start, stop, step) - Create an array with a range of values.
Array Operations:
np.sum(array) - Calculate the sum of array elements.
np.mean(array) - Compute the mean.
np.median(array) - Calculate the median.
np.std(array) - Compute the standard deviation.
Indexing and Slicing:
array[start:stop] - Slice an array.
array[row, col] - Access a specific element.
array[:, col] - Select all rows for a column.
Reshaping and Transposing:
array.reshape(new_shape) - Reshape an array.
array.T - Transpose an array.
Random Sampling:
np.random.rand(rows, cols) - Generate random numbers in [0, 1).
np.random.randint(low, high, size) - Generate random integers.
Mathematical Operations:
np.dot(A, B) - Compute the dot product.
np.linalg.inv(A) - Compute the inverse of a matrix.
Here you can find essential Python Interview Resources๐
https://whatsapp.com/channel/0029VaGgzAk72WTmQFERKh02
Like this post for more resources like this ๐โฅ๏ธ
Share with credits: https://t.me/sqlspecialist
Hope it helps :)
Array Creation:
np.array() - Create an array from a list.
np.zeros((rows, cols)) - Create an array filled with zeros.
np.ones((rows, cols)) - Create an array filled with ones.
np.arange(start, stop, step) - Create an array with a range of values.
Array Operations:
np.sum(array) - Calculate the sum of array elements.
np.mean(array) - Compute the mean.
np.median(array) - Calculate the median.
np.std(array) - Compute the standard deviation.
Indexing and Slicing:
array[start:stop] - Slice an array.
array[row, col] - Access a specific element.
array[:, col] - Select all rows for a column.
Reshaping and Transposing:
array.reshape(new_shape) - Reshape an array.
array.T - Transpose an array.
Random Sampling:
np.random.rand(rows, cols) - Generate random numbers in [0, 1).
np.random.randint(low, high, size) - Generate random integers.
Mathematical Operations:
np.dot(A, B) - Compute the dot product.
np.linalg.inv(A) - Compute the inverse of a matrix.
Here you can find essential Python Interview Resources๐
https://whatsapp.com/channel/0029VaGgzAk72WTmQFERKh02
Like this post for more resources like this ๐โฅ๏ธ
Share with credits: https://t.me/sqlspecialist
Hope it helps :)
๐3โค1
Roadmap to become a Python Developer:
๐ Learn Python Basics (Syntax, Data Types, Loops)
โ๐ Learn Data Structures (Lists, Tuples, Dicts, Sets)
โ๐ Learn Functions & Modules
โ๐ Learn File Handling & Exceptions
โ๐ Learn OOP Concepts
โ๐ Learn Libraries (Pandas, NumPy, etc.)
โ๐ Learn Web Development (Flask / Django)
โ๐ Learn APIs & Database Integration
โ๐ Build Projects & Portfolio
โโ Apply for Job
React โค๏ธ for More
๐ Learn Python Basics (Syntax, Data Types, Loops)
โ๐ Learn Data Structures (Lists, Tuples, Dicts, Sets)
โ๐ Learn Functions & Modules
โ๐ Learn File Handling & Exceptions
โ๐ Learn OOP Concepts
โ๐ Learn Libraries (Pandas, NumPy, etc.)
โ๐ Learn Web Development (Flask / Django)
โ๐ Learn APIs & Database Integration
โ๐ Build Projects & Portfolio
โโ Apply for Job
React โค๏ธ for More
โค7
9 tips to improve your code:
- Declare variables close to usage
- Functions do 1 thing
- Avoid long functions
- Avoid long lines
- Don't repeat code
- Use descriptive variable/function names
- Use few arguments
- Simplify conditions (return age >17;)
- Remove unused code
- Declare variables close to usage
- Functions do 1 thing
- Avoid long functions
- Avoid long lines
- Don't repeat code
- Use descriptive variable/function names
- Use few arguments
- Simplify conditions (return age >17;)
- Remove unused code
Without errors, No-one can become a good programmer.
Errors are the most important phase of learning to code.
Errors are the most important phase of learning to code.
What are the common built-in data types in Python?
Python supports the below-mentioned built-in data types:
Immutable data types:
๐Number
๐String
๐Tuple
Mutable data types:
๐List
๐Dictionary
๐set
Python supports the below-mentioned built-in data types:
Immutable data types:
๐Number
๐String
๐Tuple
Mutable data types:
๐List
๐Dictionary
๐set
๐2
Python Most Important Interview Questions
Question 1: Calculate the average stock price for Company X over the last 6 months.
Question 2: Identify the month with the highest total sales for Company Y using their monthly sales data.
Question 3: Find the maximum and minimum stock price for Company Z on any given day in the last year.
Question 4: Create a column in the DataFrame showing the percentage change in stock price from the previous day for Company X.
Question 5: Determine the number of days when the stock price of Company Y was above its 30-day moving average. Question
6: Compare the average stock price of Companies X and Z in the first quarter of the year.
#Data#
----------------------------------------------
import pandas as pd
data = { 'Date': pd.date_range(start='2023-01-01', periods=180, freq='D'), 'CompanyX_StockPrice': pd.np.random.randint(50, 150, 180), 'CompanyY_Sales': pd.np.random.randint(20000, 50000, 180), 'CompanyZ_StockPrice': pd.np.random.randint(70, 200, 180) }
df = pd.DataFrame(data)
Question 1: Calculate the average stock price for Company X over the last 6 months.
Question 2: Identify the month with the highest total sales for Company Y using their monthly sales data.
Question 3: Find the maximum and minimum stock price for Company Z on any given day in the last year.
Question 4: Create a column in the DataFrame showing the percentage change in stock price from the previous day for Company X.
Question 5: Determine the number of days when the stock price of Company Y was above its 30-day moving average. Question
6: Compare the average stock price of Companies X and Z in the first quarter of the year.
#Data#
----------------------------------------------
import pandas as pd
data = { 'Date': pd.date_range(start='2023-01-01', periods=180, freq='D'), 'CompanyX_StockPrice': pd.np.random.randint(50, 150, 180), 'CompanyY_Sales': pd.np.random.randint(20000, 50000, 180), 'CompanyZ_StockPrice': pd.np.random.randint(70, 200, 180) }
df = pd.DataFrame(data)
๐7
๐ง๐๐ฆ ๐๐ฅ๐๐ ๐๐ฎ๐๐ฎ ๐๐ป๐ฎ๐น๐๐๐ถ๐ฐ๐ ๐๐ฒ๐ฟ๐๐ถ๐ณ๐ถ๐ฐ๐ฎ๐๐ถ๐ผ๐ป ๐๐ผ๐๐ฟ๐๐ฒ๐๐
Want to kickstart your career in Data Analytics but donโt know where to begin?๐จโ๐ป
TCS has your back with a completely FREE course designed just for beginnersโ
๐๐ข๐ง๐ค๐:-
https://pdlink.in/4jNMoEg
Just pure, job-ready learning๐
Want to kickstart your career in Data Analytics but donโt know where to begin?๐จโ๐ป
TCS has your back with a completely FREE course designed just for beginnersโ
๐๐ข๐ง๐ค๐:-
https://pdlink.in/4jNMoEg
Just pure, job-ready learning๐
๐๐ป Top 10 Websites for Coding Practice:
๐ Hackerrank.com
๐ก Leetcode.com
โ Codewars.com
๐๏ธ Exercism.org
๐ Codeforces.com
๐ Hackerearth.com
๐ Topcoder.com
โฒ๏ธ Coderbyte.com
๐งฎ Projecteuler.net
๐ฝ๏ธ Codechef.com
๐ Hackerrank.com
๐ก Leetcode.com
โ Codewars.com
๐๏ธ Exercism.org
๐ Codeforces.com
๐ Hackerearth.com
๐ Topcoder.com
โฒ๏ธ Coderbyte.com
๐งฎ Projecteuler.net
๐ฝ๏ธ Codechef.com
๐ช๐ฎ๐ป๐ ๐๐ผ ๐๐ฒ๐ฎ๐ฟ๐ป ๐๐ป-๐๐ฒ๐บ๐ฎ๐ป๐ฑ ๐ง๐ฒ๐ฐ๐ต ๐ฆ๐ธ๐ถ๐น๐น๐ โ ๐ณ๐ผ๐ฟ ๐๐ฅ๐๐ โ ๐๐ถ๐ฟ๐ฒ๐ฐ๐๐น๐ ๐ณ๐ฟ๐ผ๐บ ๐๐ผ๐ผ๐ด๐น๐ฒ?๐
Whether youโre a student, job seeker, or just hungry to upskill โ these 5 beginner-friendly courses are your golden ticket. ๐๏ธ
Just career-boosting knowledge and certificates that make your resume pop๐
๐๐ข๐ง๐ค๐:-
https://pdlink.in/42vL6br
All The Best ๐
Whether youโre a student, job seeker, or just hungry to upskill โ these 5 beginner-friendly courses are your golden ticket. ๐๏ธ
Just career-boosting knowledge and certificates that make your resume pop๐
๐๐ข๐ง๐ค๐:-
https://pdlink.in/42vL6br
All The Best ๐