-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update python-for-datascience.md #2065
Open
lbdelilla
wants to merge
2
commits into
breatheco-de:master
Choose a base branch
from
lbdelilla:patch-1
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This commit includes the translation of the Spanish version (python-for-datascience.es.md) into English to ensure consistency and alignment between both language versions.
tommygonzaleza
requested changes
Jan 18, 2024
Comment on lines
59
to
94
Sure, I'd be happy to translate that for you: | ||
|
||
"Python is a very versatile programming language used in a multitude of cases: web development (both front and back end), mobile game development, simulations, networks, automations, and more. Additionally, it is the go-to language for working with data and developing algorithms for Artificial Intelligence, Data Science, and Machine Learning. Before we dive in, let's distinguish between the three terms mentioned: | ||
|
||
Term Definition Scope Goal | ||
Artificial Intelligence (AI) The study of how to make computers think and act like humans. A broad field including subfields like machine learning, robotics, natural language processing, computer vision, etc. Simulate human intelligence in machines. | ||
Machine Learning (ML) A subfield of AI focusing on developing algorithms and models that allow computers to learn from data. A specific technique within artificial intelligence. Make predictions or decisions without being explicitly programmed. | ||
Data Science An interdisciplinary field using statistical, computational, and analytical techniques to interpret, understand, and extract knowledge from structured and unstructured data. Involves acquiring, cleaning, analyzing, and visualizing data, and may use AI and machine learning for analysis. Discover patterns and obtain valuable insights from large datasets. | ||
While AI focuses on simulating human intelligence, machine learning is a technique within AI that enables machines to learn from data, and data science is a broader discipline dealing with the entire process of working with data, from collection to interpretation, and may involve the use of AI and machine learning. | ||
|
||
Basic Python Guide | ||
Hello, World! | ||
Every developer starting with a new language prints 'Hello, World!'. In Python, we can do it using the print function, which displays any data or text placed within its parentheses: | ||
|
||
python | ||
Copy code | ||
print("Hello, World!") | ||
Variables | ||
A variable in Python (and most programming languages) is a container that stores data that can vary over time. This value can be a number, text, a list of elements, etc. The special thing about this container is that we can give it a name to identify it and access what it holds when needed: | ||
|
||
python | ||
Copy code | ||
name = "Juan" | ||
age = 25 | ||
height = 1.80 | ||
is_student = True | ||
Additionally, variables are mutable and can change over time. So, just as we can access their value to read it, we can also modify it: | ||
|
||
python | ||
Copy code | ||
my_number = 10 | ||
print(f"Original number: {my_number}") | ||
|
||
my_number = 60 | ||
print(f"New number: {my_number}") | ||
This way, we have changed the value of the variable my_number from 10 to 60. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dejaron aqui el contenido de ChatGPT
Comment on lines
205
to
224
**Logical Operators** | ||
|
||
|
||
Sure, I'd be happy to translate that for you: | ||
|
||
"Python is a very versatile programming language used in a multitude of cases: web development (both front and back end), mobile game development, simulations, networks, automations, and more. Additionally, it is the go-to language for working with data and developing algorithms for Artificial Intelligence, Data Science, and Machine Learning. Before we dive in, let's distinguish between the three terms mentioned: | ||
|
||
Term Definition Scope Goal | ||
Artificial Intelligence (AI) The study of how to make computers think and act like humans. A broad field including subfields like machine learning, robotics, natural language processing, computer vision, etc. Simulate human intelligence in machines. | ||
Machine Learning (ML) A subfield of AI focusing on developing algorithms and models that allow computers to learn from data. A specific technique within artificial intelligence. Make predictions or decisions without being explicitly programmed. | ||
Data Science An interdisciplinary field using statistical, computational, and analytical techniques to interpret, understand, and extract knowledge from structured and unstructured data. Involves acquiring, cleaning, analyzing, and visualizing data, and may use AI and machine learning for analysis. Discover patterns and obtain valuable insights from large datasets. | ||
While AI focuses on simulating human intelligence, machine learning is a technique within AI that enables machines to learn from data, and data science is a broader discipline dealing with the entire process of working with data, from collection to interpretation, and may involve the use of AI and machine learning. | ||
|
||
Basic Python Guide | ||
Hello, World! | ||
Every developer starting with a new language prints 'Hello, World!'. In Python, we can do it using the print function, which displays any data or text placed within its parentheses: | ||
|
||
python | ||
Copy code | ||
print("Hello, World!") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mas contenido de AI
I have removed redundant information and made corrections that were not appropriate in the file python-for-datascience.md.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This commit includes the translation of the Spanish version (python-for-datascience.es.md) into English to ensure consistency and alignment between both language versions.