Data Analysis Books | Python | SQL | Excel | Artificial Intelligence | Power BI | Tableau | AI Resources
49.2K subscribers
237 photos
1 video
37 files
397 links
Download Telegram
2. Learn Microsoft Excel:

Software: Microsoft Excel Online (itโ€™s not the best, but it will do.)

YouTube & Telegram channels to learn: Teacherโ€™s Tech, Excel for Data Analysis, Kevin Stratvert, Leila Gharani, Alex the Analyst

Learn Data Analytics
๐Ÿ‘10โค3
3. Learn SQL

Software: MySQL

Free courses: Khan Academy, W3Schools, SQL Bolt, SQL Zoo, Luke Barousse and Alex the Analyst on YouTube

Telegram channel: SQL for data analysis

Practice problems: Hacker Rank, Leet Code, Data Lemur

Games: SQL Island, SQL Murder Mystery

Learn Data Analytics
โค2๐Ÿ‘2
4. Learn Tableau

Software: Tableau Public

Learn with Tableau Public website and YouTube channels such as Alex the Analyst, Andy Kriebel, and Tableau Tim

Learn Data Analytics
๐Ÿ‘7
Data Analyst is NOT a Business Analyst.

BOTH Works with DATA,but the way they do it is Vastly Different.

Data Analyst Mainly :-

โœ”๏ธ Work in DATABASE.
โœ”๏ธ Use SQL.
โœ”๏ธ Propose actionable INSIGHTS.
โœ”๏ธ Report to Team Memeber's.

Business Analyst Mainly :-

โœ”๏ธ Work in SPREADSHEET.
โœ”๏ธ Use EXCEL.
โœ”๏ธ Make Strategic Recommendations.
โœ”๏ธ Report to Upper Management.

Awareness of the difference's between Data Analyst & Business Analyst.
๐Ÿ‘19๐Ÿ‘5๐Ÿ†’5โค2๐Ÿคฉ1
5. Build a portfolio to showcase your skills

There are a ton of options for hosting portfolios including GitHub Pages, Carrd, and Maven Portfolio Showcase.

Learn Data Analytics
๐Ÿ‘10
6. Build a great resume

Highlight transferrable skills from past experience, add a project section to showcase your analytics skills, and link your portfolio in the header.

Alex the Analyst did a great video on this like a year ago including a portfolio template Iโ€™ve used.

Learn Data Analytics
๐Ÿ‘6
7. Start applying to jobs

Leverage any connections you have including friends, family, and former colleagues.

If you already work for a company that hires data analysts, transitioning to a data role within the company can be the easiest route.

Once you have the skills, itโ€™s your job to get the attention of recruiters and hiring managers.

Learn Data Analytics
There are a lot of data analyst jobs that donโ€™t use SQL.

There are a lot of jobs that donโ€™t use Tableau/Power BI.

There are even jobs that donโ€™t use Excel/Google sheets.

BUT, the probability youโ€™ll use at least one of those tools in your data analyst job is close to 100%.

Thatโ€™s why I recommend every data analyst learn SQL, Excel, and Tableau or Power BI.

That way youโ€™re ready for almost all entry-level data analyst jobs.
๐Ÿ‘16โค2
8 (and forever): keep learning!

The learning doesnโ€™t stop when you start applying for jobs or even when you get one!

Always be learning something new.

Note: even with hard work, this can be a tough, time-intensive process.

Hang in there and keep the faith!

You got this.

Learn Data Analytics
โค7๐Ÿ‘2
Imp interview Q&A for numpy in Data analyst

1.Creating an array and performing basic operations:
import numpy as np

# Creating a 1D array
array = np.array([1, 2, 3, 4, 5])
print("Original array:", array)

# Adding 10 to each element
array_plus_ten = array + 10
print("Array after adding 10:", array_plus_ten)

# Multiplying each element by 2
array_times_two = array * 2
print("Array after multiplying by 2:", array_times_two)


2. Creating a 2D array and accessing element:
# Creating a 2D array (matrix)
matrix = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
print("Original matrix:\n", matrix)

# Accessing a specific element
element = matrix[1, 2]
print("Element at row 2, column 3:", element)

# Accessing a specific row
row = matrix[1, :]
print("Second row:", row)

# Accessing a specific column
column = matrix[:, 2]
print("Third column:", column)

3.Basic statistical operations on an array:
# Creating an array
data = np.array([10, 20, 30, 40, 50])

# Calculating the mean
mean = np.mean(data)
print("Mean:", mean)

# Calculating the median
median = np.median(data)
print("Median:", median)

# Calculating the standard deviation
std_dev = np.std(data)
print("Standard Deviation:", std_dev)


4.Creating arrays using different functions and reshaping:
# Creating an array of zeros
zeros_array = np.zeros((3, 3))
print("Array of zeros:\n", zeros_array)

# Creating an array of ones
ones_array = np.ones((2, 4))
print("Array of ones:\n", ones_array)

# Creating an array with a range of values
range_array = np.arange(10)
print("Array with a range of values:", range_array)

# Reshaping an array
reshaped_array = range_array.reshape(2, 5)
print("Reshaped array (2x5):\n", reshaped_array)

5. Element-wise operations and broadcasting:
# Creating two arrays
array1 = np.array([1, 2, 3])
array2 = np.array([4, 5, 6])

# Element-wise addition
addition = array1 + array2
print("Element-wise addition:", addition)

# Element-wise multiplication
multiplication = array1 * array2
print("Element-wise multiplication:", multiplication)

# Broadcasting: adding a scalar to an array
scalar_addition = array1 + 10
print("Array after adding 10 to each element:", scalar_addition)
โค8๐Ÿ‘4
Skills need for everyday data analysis jobs
๐Ÿ”ฅ14๐Ÿ‘2โค1
Complete Data Analytics Mastery: From Basics to Advanced ๐Ÿš€

Begin your Data Analytics journey by mastering the fundamentals:
- Understanding Data Types and Formats
- Basics of Exploratory Data Analysis (EDA)
- Introduction to Data Cleaning Techniques
- Statistical Foundations for Data Analytics
- Data Visualization Essentials

Grasp these essentials in just a week to build a solid foundation in data analytics.

Once you're comfortable, dive into intermediate topics:
- Advanced Data Visualization (using tools like Tableau)
- Hypothesis Testing and A/B Testing
- Regression Analysis
- Time Series Analysis for Analytics
- SQL for Data Analytics

Take another week to solidify these skills and enhance your ability to draw meaningful insights from data.

Ready for the advanced level? Explore cutting-edge concepts:
- Machine Learning for Data Analytics
- Predictive Analytics
- Big Data Analytics (Hadoop, Spark)
- Advanced Statistical Methods (Multivariate Analysis)
- Data Ethics and Privacy in Analytics

These advanced concepts can be mastered in a couple of weeks with focused study and practice.

Remember, mastery comes with hands-on experience:
- Work on a simple data analytics project
- Tackle an intermediate-level analysis task
- Challenge yourself with an advanced analytics project involving real-world data sets

Consistent practice and application of analytics techniques are the keys to becoming a data analytics pro.

Best platforms to learn:
- Intro to Data Analysis
- Udacity's Data Analyst Nanodegree
- Intro to Data Visualisation
- SQL courses with Certificate
- Freecodecamp Python Course
- 365DataScience
- Data Analyst Resume Checklist
- Learning SQL FREE Book

Share your progress and insights with others in the data analytics community. Enjoy the fascinating journey into the realm of data analytics! ๐Ÿ‘ฉโ€๐Ÿ’ป๐Ÿ‘จโ€๐Ÿ’ป

Join @free4unow_backup for more free resources.

Like this post if it helps ๐Ÿ˜„โค๏ธ

ENJOY LEARNING ๐Ÿ‘๐Ÿ‘
๐Ÿ‘14โค1
Some basic concepts regarding data and database

Data is representation of the facts, measurements, figures, or concepts in a formalized manner having no
specific meaning.

Database is an organized collection of the data stored and can be accessed electronically in a computer system.

DBMS are software systems that enable users to store, retrieve, define and manage data in a database easily.

RDBMS is a type of DBMS that stores data in a row-based table structure which connects related data elements.

SQL is a database query language used for storing and managing data in RDBMS.
๐Ÿ‘5
10 Steps to Landing a High Paying Job in Data Analytics

1. Learn SQL - joins & windowing functions is most important

2. Learn Excel- pivoting, lookup, vba, macros is must

3. Learn Dashboarding on POWER BI/ Tableau

4. โ Learn Python basics- mainly pandas, numpy, matplotlib and seaborn libraries

5. โ Know basics of descriptive statistics

6. โ With AI/ copilot integrated in every tool, know how to use it and add to your projects

7. โ Have hands on any 1 cloud platform- AZURE/AWS/GCP

8. โ WORK on atleast 2 end to end projects and create a portfolio of it

9. โ Prepare an ATS friendly resume & start applying

10. โ Attend interviews (you might fail in first 2-3 interviews thats fine),make a list of questions you could not answer & prepare those.

Give more interview to boost your chances through consistent practice & feedback ๐Ÿ˜„๐Ÿ‘
๐Ÿ‘13โค10