Data Manipulation with Numpy in Amharic
Please share it to Amharic Speakers
https://youtu.be/njj6WTGrmJk
Thanks for sharing
Please share it to Amharic Speakers
https://youtu.be/njj6WTGrmJk
Thanks for sharing
YouTube
Data Manipulation with Numpy in Amharic Part II : insert/append/delete Numpy Array | በአማርኛ የተዘጋጀ
Join this channel to get access to perks:
https://bit.ly/363MzLo
This is data manipulation with NumPy in Amharic tutorial. In this video, you will learn about:
- insert array elements
- append array elements
- delete array elements
#python #ethiopia #numpy…
https://bit.ly/363MzLo
This is data manipulation with NumPy in Amharic tutorial. In this video, you will learn about:
- insert array elements
- append array elements
- delete array elements
#python #ethiopia #numpy…
👍3🔥1
Statistics Part I :
In this tutorial, you will be learning about the statistics concepts of how to calculate:
- mean
- median
- and weighted average of NumPy array
https://youtu.be/cb_-745LZpg
If you would like to support #epythonlab, please send us "Thanks" gift.🙏
Join this channel to get exclusive access to resources:
https://bit.ly/363MzLo
#python #machinelearning #datascience #numpy
Ask your question at https://t.me/epythonlab/
Thanks for watching!
In this tutorial, you will be learning about the statistics concepts of how to calculate:
- mean
- median
- and weighted average of NumPy array
https://youtu.be/cb_-745LZpg
If you would like to support #epythonlab, please send us "Thanks" gift.🙏
Join this channel to get exclusive access to resources:
https://bit.ly/363MzLo
#python #machinelearning #datascience #numpy
Ask your question at https://t.me/epythonlab/
Thanks for watching!
YouTube
Data Manipulation with Numpy : Mean/Median/Average in Numpy Array | Statistics I
Join this channel to get access to perks:
https://bit.ly/363MzLo
In this tutorial, you will be learning about the statistics concepts of how to calculate:
- mean
- median
- and weighted average of NumPy array
#python #machinelearning #datascience #numpy…
https://bit.ly/363MzLo
In this tutorial, you will be learning about the statistics concepts of how to calculate:
- mean
- median
- and weighted average of NumPy array
#python #machinelearning #datascience #numpy…
👍3
Basics of Linear Algebra for Machine Learning Discover the Mathematical Language of Data in Python
📖 book
@epythonlab #mlbooks
📖 book
@epythonlab #mlbooks
❤4👍3🔥2
❎ copy() vs. view() in Numpy Array
In this tutorial, you will learn about the
—differences and
— similarities of copy() and view() in NumPy array with example
👉🏿https://youtu.be/fiK2uqMM_E4
👉🏿If you would like to support #epythonlab, please send us "Thanks" gift.🙏
Join this channel to get exclusive access to resources:
👋https://bit.ly/363MzLo
#python #machinelearning #datascience #numpy
Ask your question at https://t.me/epythonlab/
Thanks for watching!
In this tutorial, you will learn about the
—differences and
— similarities of copy() and view() in NumPy array with example
👉🏿https://youtu.be/fiK2uqMM_E4
👉🏿If you would like to support #epythonlab, please send us "Thanks" gift.🙏
Join this channel to get exclusive access to resources:
👋https://bit.ly/363MzLo
#python #machinelearning #datascience #numpy
Ask your question at https://t.me/epythonlab/
Thanks for watching!
👍2
✔️How to find matrices multiplication in Python?
👉https://youtu.be/AVooMeQQoeg
✔️ Let's assume matrix A and B. Matrix A has 4×2 dimensions and matrix B has 2×4 dimensions. What are the total elements of A×B and B×A respectively? ⁉️
🤞🤞Watch the above video till the end. I have explained the logic and also the way how you can find dot products in Numpy.
🥰 If you would like to support me, send me "Thanks" gift on YouTube.🙏
Please share this post to reach more learners🙏🙏
❤️ Subscribe and Follow 😸🐈
👉https://youtu.be/AVooMeQQoeg
✔️ Let's assume matrix A and B. Matrix A has 4×2 dimensions and matrix B has 2×4 dimensions. What are the total elements of A×B and B×A respectively? ⁉️
🤞🤞Watch the above video till the end. I have explained the logic and also the way how you can find dot products in Numpy.
🥰 If you would like to support me, send me "Thanks" gift on YouTube.🙏
Please share this post to reach more learners🙏🙏
❤️ Subscribe and Follow 😸🐈
🔥4
Given an array of integers, find the pair of adjacent elements that has the largest product and return that product.
Define a function solution(inputArray)
Example: For inputArray = [3, 6, -2, -5, 7, 3], the output should be
solution(inputArray) = 21.
@epythonlab
Define a function solution(inputArray)
Example: For inputArray = [3, 6, -2, -5, 7, 3], the output should be
solution(inputArray) = 21.
@epythonlab
👍1
Flask Web Development
📖 book
Video playlist: https://www.youtube.com/playlist?list=PL0nX4ZoMtjYGzAtRxyP0szpmv3Yaub-0o
@epythonlab #flask
📖 book
Video playlist: https://www.youtube.com/playlist?list=PL0nX4ZoMtjYGzAtRxyP0szpmv3Yaub-0o
@epythonlab #flask
👍7
Python Programming for Beginners
Function parameters Vs arguments
Watch "Python Tutorial Part-11 | Parameters Vs Arguments" on YouTube
https://youtu.be/WiJMTC7n6XE
Function parameters Vs arguments
Watch "Python Tutorial Part-11 | Parameters Vs Arguments" on YouTube
https://youtu.be/WiJMTC7n6XE
YouTube
Python Tutorial Part-11 | Parameters Vs Arguments
Hello everyone, in this video, you will learn the difference between function parameters and arguments.
You also learn return and pass statements in the function.
@EPYTHON LAB
0:00 Introduction to Function in Python
31:37 Python Tutorial Part-09| Function…
You also learn return and pass statements in the function.
@EPYTHON LAB
0:00 Introduction to Function in Python
31:37 Python Tutorial Part-09| Function…
👍1
Given an array of integers, find the maximal absolute difference between any two of its adjacent elements.
Example: What is your solution?
For arr = [2, 4, 1, 0], the output should be = 3.
for arr = [10, 11, 13], the output should be = 2 .
Here is my solution:https://www.youtube.com/watch?v=r2e6lsXhRWE&list=PL0nX4ZoMtjYHpaL61IUwQkxfcnfkySidl&index=2
Example: What is your solution?
For arr = [2, 4, 1, 0], the output should be = 3.
for arr = [10, 11, 13], the output should be = 2 .
Here is my solution:https://www.youtube.com/watch?v=r2e6lsXhRWE&list=PL0nX4ZoMtjYHpaL61IUwQkxfcnfkySidl&index=2
YouTube
#100daysofcode | Day 2: Find Maximal Difference of Adjacent Array
Join this channel to get access to perks:
https://bit.ly/363MzLo
This is the #100daysofcode challenge. Day 2: Find the absolute difference of its two of adjacent elements in the array.
#python #machinelearning #datascience
Ask your question at https://t.me/epythonlab/…
https://bit.ly/363MzLo
This is the #100daysofcode challenge. Day 2: Find the absolute difference of its two of adjacent elements in the array.
#python #machinelearning #datascience
Ask your question at https://t.me/epythonlab/…
👍3
Python Programming for Beginners in Amharic
Share it to your friends
https://www.youtube.com/watch?v=grE04nPeUJE
Share it to your friends
https://www.youtube.com/watch?v=grE04nPeUJE
YouTube
ፓይተን ለጀማሪዎች | Python for Absolute Beginners | String Manipulation
Day 3: This is for absolute beginners. You will learn about string manipulation in today's live session.
Day 1 Video: https://www.youtube.com/watch?v=dND_rzNfw2s&list=UUsFz0IGS9qFcwrh7a91juPg
Join this channel to get access to perks:
https://bit.ly/363MzLo…
Day 1 Video: https://www.youtube.com/watch?v=dND_rzNfw2s&list=UUsFz0IGS9qFcwrh7a91juPg
Join this channel to get access to perks:
https://bit.ly/363MzLo…
👍1
Day 3: Determine the ticket number isLucky or not
https://www.youtube.com/watch?v=GM25orW8ehE&list=PL0nX4ZoMtjYHpaL61IUwQkxfcnfkySidl&index=3
https://www.youtube.com/watch?v=GM25orW8ehE&list=PL0nX4ZoMtjYHpaL61IUwQkxfcnfkySidl&index=3
YouTube
Day 3: Determine the Ticket Number isLucky or Not
Join this channel to get access to perks:
https://bit.ly/363MzLo
This is #100daysofcode. Day 3: Given the ticket number n, determine if it's lucky or not.
#python #machinelearning #datascience
Ask your question at https://t.me/epythonlab/
Thanks for watching!
https://bit.ly/363MzLo
This is #100daysofcode. Day 3: Given the ticket number n, determine if it's lucky or not.
#python #machinelearning #datascience
Ask your question at https://t.me/epythonlab/
Thanks for watching!
🔥2
Create your own Twitter Developer Account to explore twitter content
https://developer.twitter.com/en/portal/petition/essential/basic-info
https://developer.twitter.com/en/portal/petition/essential/basic-info
👍2
How to Access Twitter Data using Twitter Developer API
Watch now: https://www.youtube.com/watch?v=jDHwRbezPw0&list=UUsFz0IGS9qFcwrh7a91juPg
Please don't forget to send sticker or thanks gift if you would like to support @epythonlab
Share it.
Watch now: https://www.youtube.com/watch?v=jDHwRbezPw0&list=UUsFz0IGS9qFcwrh7a91juPg
Please don't forget to send sticker or thanks gift if you would like to support @epythonlab
Share it.
YouTube
How to Access Twitter Data using Twitter API in Python | Twitter Data Analysis
Join this channel to get access to perks:
https://bit.ly/363MzLo
Hi, you will learn how to access Twitter content using Twitter developer API in python.
#python #twitter_api #datascience
Ask your question at https://t.me/epythonlab/
Thanks for watching!
https://bit.ly/363MzLo
Hi, you will learn how to access Twitter content using Twitter developer API in python.
#python #twitter_api #datascience
Ask your question at https://t.me/epythonlab/
Thanks for watching!
👍4
Do you know how to make venn diagram in Python?
If no, it is so simple. Watch the following short video. Don't forget to send sticker, thanksgift
https://www.youtube.com/watch?v=IrwfYhK05bg&list=PL0nX4ZoMtjYFwa6WIlGqs8g3EBTYt1k7y&index=12
If no, it is so simple. Watch the following short video. Don't forget to send sticker, thanksgift
https://www.youtube.com/watch?v=IrwfYhK05bg&list=PL0nX4ZoMtjYFwa6WIlGqs8g3EBTYt1k7y&index=12
YouTube
How to Make Venn Diagram in Python
Join this channel to get access to perks:
https://bit.ly/363MzLo
This is a top tutorial how to make Venn diagram with Python to make comparison.
#python #machinelearning #datascience #venndiagram
Ask your question at https://t.me/epythonlab/
Thanks for watching!
https://bit.ly/363MzLo
This is a top tutorial how to make Venn diagram with Python to make comparison.
#python #machinelearning #datascience #venndiagram
Ask your question at https://t.me/epythonlab/
Thanks for watching!
👍5