The death rate of Somalia and Sudan is high when we compare others. Ethiopia is in good status. Almost 50% are recovered in #Djiboti
#QuarantineYourself #LearnDataScience
#QuarantineYourself #LearnDataScience
6 Reasons Now’s the Perfect Time to Commit to Coding
https://news.codecademy.com/6-reasons-to-learn-to-code/?utm_source=customer_io&utm_medium=email&utm_campaign=worker_support&utm_content=6reasons
https://news.codecademy.com/6-reasons-to-learn-to-code/?utm_source=customer_io&utm_medium=email&utm_campaign=worker_support&utm_content=6reasons
Codecademy
6 Reasons Now’s the Perfect Time to Commit to Coding
We believe that learning a new skill during this challenging time can provide a sense of empowerment and so much more. Here are six reasons to learn to code while you’re at home.
Jupyter Notebooks
Jupyter Notebooks are an extremely powerful tool for data analysis because they allow you to run python commands and see outputs within the structure of a notebook, which is helpful because in Data Analysis you are often running short commands to produce the data/visualizations you need for a certain investigation.
To know how to install Jupyter notebook, looking at the following short video
https://www.youtube.com/watch?v=5Yx6h7Mgiv0
Jupyter Notebooks are an extremely powerful tool for data analysis because they allow you to run python commands and see outputs within the structure of a notebook, which is helpful because in Data Analysis you are often running short commands to produce the data/visualizations you need for a certain investigation.
To know how to install Jupyter notebook, looking at the following short video
https://www.youtube.com/watch?v=5Yx6h7Mgiv0
YouTube
Installing Jupyter Notebook on Linux
This tutorial shows you how to install jupyter notebook on Linux Machine for Data Science.
Sometimes I share you some python books which may help you to study python. Because #PYTHON is the powerful tool for Data Science, Machine Learning, Artificial Intelligence, and also to develop desktop application, web application etc. Ask @pydiscussion
#Python is a multi-paradigm, dynamically typed, multipurpose programming language, designed to be quick (to learn, to use, and to understand), and to enforce a clean and uniform syntax. Please note that Python 2 is officially out of support as of January 1, 2020. Therefore automatically shift yourself from Python-2 to the latest and most improved version of python [python-3.x] .
#QuarantineYourself #LearnPython #LearnDataScience
#QuarantineYourself #LearnPython #LearnDataScience
👍1
Reading a File using Python
Computers use file systems to store and retrieve data. Each file is an individual container of related information. If you’ve ever saved a document, downloaded a song, or even sent an email you’ve created a file on some computer somewhere. Even script.py, the Python program you’re editing in the learning environment, is a file.
So, how do we interact with files using Python?
Let’s say we had a file called hello_python.txt with these contents:
script.py
#QuarantineYourself #LearnPython #LearnDataScience
Computers use file systems to store and retrieve data. Each file is an individual container of related information. If you’ve ever saved a document, downloaded a song, or even sent an email you’ve created a file on some computer somewhere. Even script.py, the Python program you’re editing in the learning environment, is a file.
So, how do we interact with files using Python?
Let’s say we had a file called hello_python.txt with these contents:
Python is a powerful tool for Data Ananlysis. So, stay at home and learn python for future Data Science.
We could read that file like this:script.py
with open('hello_python.txt') as python_file:
python_contents = python_file.read()
print(python_contents)
This
opens a file object called python_file and creates a new indented block where you can read the contents of the opened file. We then read the contents of the file python_file using python_file.read() and save the resulting string into the variable python_contents. Then we print python_contents, which outputs the statement written in the above!.#QuarantineYourself #LearnPython #LearnDataScience
Introduction to Machine Learning
The year is 2049…
But learn Python then Data Science(Data Analyze, Data Manipulation, Visualization, and Hypothesis testing), and then Learn Machine Learning.
Finally, learn AI
The year is 2049…
But learn Python then Data Science(Data Analyze, Data Manipulation, Visualization, and Hypothesis testing), and then Learn Machine Learning.
Finally, learn AI
Epython Lab via @like
Python is a general-purpose programming language. It can do almost all of what other languages can do with comparable, or faster, speed. It is often chosen by Data Analysts and Data Scientists for prototyping, visualization, and execution of data analyses on datasets.
There’s an important question here. Plenty of other programming languages, like R, can be useful in the field of data science. Why are so many people choosing Python?
One major factor is Python’s versatility. There are over 125,000 third-party Python libraries. These libraries make Python more useful for specific purposes, from the traditional (e.g. web development, text processing) to the cutting edge (e.g. AI and machine learning). For example, a biologist might use the Biopython library to aid their work in genetic sequencing.
Additionally, Python has become a go-to language for data analysis. With data-focused libraries like pandas, NumPy, and Matplotlib, anyone familiar with Python’s syntax and rules can use it as a powerful tool to process, manipulate, and visualize data.
#FaceMask #KeepDistancing #LearnPython #LearnDataScience
Join @python4fds for more information
There’s an important question here. Plenty of other programming languages, like R, can be useful in the field of data science. Why are so many people choosing Python?
One major factor is Python’s versatility. There are over 125,000 third-party Python libraries. These libraries make Python more useful for specific purposes, from the traditional (e.g. web development, text processing) to the cutting edge (e.g. AI and machine learning). For example, a biologist might use the Biopython library to aid their work in genetic sequencing.
Additionally, Python has become a go-to language for data analysis. With data-focused libraries like pandas, NumPy, and Matplotlib, anyone familiar with Python’s syntax and rules can use it as a powerful tool to process, manipulate, and visualize data.
#FaceMask #KeepDistancing #LearnPython #LearnDataScience
Join @python4fds for more information
👍1
Machine Learning
Machine Learning is the science of getting computers to learn and act like humans do, and improve their learning over time in autonomous fashion, by feeding them data and information in the form of observations and real-world interactions. It has taken the Data Science world by storm.
It can be branched out into the following categories:
Supervised Learning
Unsupervised Learning
Supervised Learning is when the data is labeled and the program learns to predict the output from the input data. For instance, a supervised learning algorithm for credit card fraud detection would take as input a set of recorded transactions. It would learn what makes a transaction likely to be fraudulent. Then, for each new transaction, the program would predict if it is fraudulent or not.
Unsupervised Learning is where the data is unlabeled and the program learns to recognize the inherent structure of the input data. For the same fraud example, the model would take in a bunch of transactions with no indication of if they are fraudulent or not, and it would group them based on patterns it sees. It might discover two groups, fraudulent and legitimate.
Join @python4fds
#DataScience #MachineLearning
Machine Learning is the science of getting computers to learn and act like humans do, and improve their learning over time in autonomous fashion, by feeding them data and information in the form of observations and real-world interactions. It has taken the Data Science world by storm.
It can be branched out into the following categories:
Supervised Learning
Unsupervised Learning
Supervised Learning is when the data is labeled and the program learns to predict the output from the input data. For instance, a supervised learning algorithm for credit card fraud detection would take as input a set of recorded transactions. It would learn what makes a transaction likely to be fraudulent. Then, for each new transaction, the program would predict if it is fraudulent or not.
Unsupervised Learning is where the data is unlabeled and the program learns to recognize the inherent structure of the input data. For the same fraud example, the model would take in a bunch of transactions with no indication of if they are fraudulent or not, and it would group them based on patterns it sees. It might discover two groups, fraudulent and legitimate.
Join @python4fds
#DataScience #MachineLearning
If you have any comment or feedback about the key notes I have posting on the channel @python4fds , you can forward via @pythonEthBot
Writing a File using Python
In the previous post we have seen that how to open and read a file using python script. Today, I have posting about how to write a file or create your own file using the script.
Reading a file is all well and good, but what if we want to create a file of our own? With Python we can do just that. It turns out that our open() function that we’re using to open a file to read needs another argument to open a file to write to.
script.py
This code creates a new file in the same folder as script.py and gives it the text What an incredible file!. It’s important to note that if there is already a file called generated_file.txt it will completely overwrite that file, erasing whatever its contents were before.
#QuarantineYourself #LearnPython #LearnDataScience
In the previous post we have seen that how to open and read a file using python script. Today, I have posting about how to write a file or create your own file using the script.
Reading a file is all well and good, but what if we want to create a file of our own? With Python we can do just that. It turns out that our open() function that we’re using to open a file to read needs another argument to open a file to write to.
script.py
with open('generated_file.txt', 'w') as gen_file:
gen_file.write("I love python!")
Here we pass the argument 'w' to open() **in order to indicate to open the file in write-mode. The default argument is 'r' and passing 'r' to **open() opens the file in read-mode as we’ve been doing.This code creates a new file in the same folder as script.py and gives it the text What an incredible file!. It’s important to note that if there is already a file called generated_file.txt it will completely overwrite that file, erasing whatever its contents were before.
#QuarantineYourself #LearnPython #LearnDataScience
Forwarded from Future Data Science(FDS)
#challenge1
level #very_easy
Write a a script that asks a user to enter two integer and returns the addition of them
#rule
1 your should handle an exeception if the user input is invalid
#input_output_example
#ex1
input a number: 5
input another number: 4
the sum is 9
#ex2
input a number: abc
input another number: def
your input is invaild
#ex3
input a number: 1.2
input another number: 4.6
the sum is 5.8
level #very_easy
Write a a script that asks a user to enter two integer and returns the addition of them
#rule
1 your should handle an exeception if the user input is invalid
#input_output_example
#ex1
input a number: 5
input another number: 4
the sum is 9
#ex2
input a number: abc
input another number: def
your input is invaild
#ex3
input a number: 1.2
input another number: 4.6
the sum is 5.8
What Is a CSV File?
Text files aren’t the only thing that Python can read, but they’re the only thing that we don’t need any additional parsing library to understand. CSV files are an example of a text file that impose a structure to their data. CSV stands for Comma-Separated Values and CSV files are usually the way that data from spreadsheet software (like Microsoft Excel or Google Sheets) is exported into a portable format. A spreadsheet that looks like the following
In a CSV file that same exact data would be rendered like this:
users.csv
Name,Username,Email, Asibeh Tenager, asibeh, asibeh@yahoo.com
Notice that the first row of the CSV file doesn’t actually represent any data, just the labels of the data that’s present in the rest of the file. The rest of the rows of the file are the same as the rows in the spreadsheet software, just instead of being separated into different cells they’re separated by… well I suppose it’s fair to say they’re separated by commas.
#FaceMask #KeepDistancing #LearnPython #LearnDatascience
Text files aren’t the only thing that Python can read, but they’re the only thing that we don’t need any additional parsing library to understand. CSV files are an example of a text file that impose a structure to their data. CSV stands for Comma-Separated Values and CSV files are usually the way that data from spreadsheet software (like Microsoft Excel or Google Sheets) is exported into a portable format. A spreadsheet that looks like the following
Name Username Email
Asibeh Tenager asibeh asibeh@yahoo.com
Asibeh Tenager asibeh asibeh@yahoo.comIn a CSV file that same exact data would be rendered like this:
users.csv
Name,Username,Email, Asibeh Tenager, asibeh, asibeh@yahoo.com
Notice that the first row of the CSV file doesn’t actually represent any data, just the labels of the data that’s present in the rest of the file. The rest of the rows of the file are the same as the rows in the spreadsheet software, just instead of being separated into different cells they’re separated by… well I suppose it’s fair to say they’re separated by commas.
#FaceMask #KeepDistancing #LearnPython #LearnDatascience
Epython Lab via @like
Learn Python for
✅ Data Science
✅ Artificial Intelligence
✅ Machine Learning
✍ Mode of Delivery: Short notes, Books, Articles, Exercises, Challenges etc.
🪐 Plan to build a big Dataset in Ethiopia which helps Developers and Researchers abroad.
✅ Data Science
✅ Artificial Intelligence
✅ Machine Learning
✍ Mode of Delivery: Short notes, Books, Articles, Exercises, Challenges etc.
🪐 Plan to build a big Dataset in Ethiopia which helps Developers and Researchers abroad.