<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: elanyon</title>
    <description>The latest articles on DEV Community by elanyon (@elanyon).</description>
    <link>https://dev.to/elanyon</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1029802%2F9ac575f8-f99a-407f-8e36-ad929d420eae.png</url>
      <title>DEV Community: elanyon</title>
      <link>https://dev.to/elanyon</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/elanyon"/>
    <language>en</language>
    <item>
      <title>Essential SQL Commands for Data Science</title>
      <dc:creator>elanyon</dc:creator>
      <pubDate>Fri, 31 Mar 2023 14:45:54 +0000</pubDate>
      <link>https://dev.to/elanyon/essential-sql-commands-for-data-science-33i5</link>
      <guid>https://dev.to/elanyon/essential-sql-commands-for-data-science-33i5</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--e2gRRuiT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://www.simplilearn.com/ice9/free_resources_article_thumb/Concat_in_SQL.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--e2gRRuiT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://www.simplilearn.com/ice9/free_resources_article_thumb/Concat_in_SQL.jpg" alt="Essential SQL Commands for Data Science" width="848" height="477"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Structured Query Language&lt;/strong&gt;, or &lt;strong&gt;SQL&lt;/strong&gt; as it is more commonly known, is a standardized language used to query or retrieve data from a relational database. Additionally, it can be used to modify the data in various ways, including filtering rows and columns and basic data manipulation. &lt;/p&gt;

&lt;p&gt;A &lt;em&gt;relational database&lt;/em&gt; is a collection of clearly defined tables that enable data access, editing, updating, and other operations without requiring changes to the database tables themselves. Relational databases' standard (API) is SQL.&lt;/p&gt;

&lt;p&gt;Returning to SQL programming, it is possible to use it to perform a variety of operations on data, including querying, inserting, updating, and deleting database records. MySQL Database, Oracle, and other relational databases are examples.&lt;br&gt;
Basics of SQL To modify data tables, SQL provides a set of straightforward commands. Here are a few of these commands:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Basics of SQL&lt;/strong&gt;&lt;br&gt;
To modify data tables, SQL provides a set of straightforward commands. Here are a few of these commands:&lt;br&gt;
CREATE DATABASE :This command creates a new database.&lt;br&gt;
USE: The database is activated using this command. &lt;br&gt;
CREATE TABLE :This command creates a new table.&lt;br&gt;
INSERT INTO command : adds new data to a database.&lt;br&gt;
SELECT : pulls information out of a database.&lt;br&gt;
UPDATE : Performs a database update.&lt;br&gt;
DELETE : removes information from a database.&lt;br&gt;
ALTER DATABASE : Changes a database.&lt;br&gt;
ALTER TABLE : changes a table.&lt;br&gt;
DROP TABLE : eliminates a table.&lt;br&gt;
CREATE INDEX : creates a searchable index for an element.&lt;br&gt;
DROP INDEX : Removes an index&lt;/p&gt;

</description>
      <category>sqlessential</category>
      <category>datascience</category>
      <category>sqlbasics</category>
      <category>mysql</category>
    </item>
    <item>
      <title>Exploratory Data Analysis Ultimate Guide</title>
      <dc:creator>elanyon</dc:creator>
      <pubDate>Sun, 26 Feb 2023 16:58:45 +0000</pubDate>
      <link>https://dev.to/elanyon/exploratory-data-analysis-ultimate-guide-lk3</link>
      <guid>https://dev.to/elanyon/exploratory-data-analysis-ultimate-guide-lk3</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdjsk15pcwx6z48cit1xn.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdjsk15pcwx6z48cit1xn.png" alt="Exploratory Data Analysis" width="225" height="225"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Exploratory data analysis (EDA) is a way of evaluating data sets to highlight their key features, frequently utilizing statistical graphics and other techniques for data visualization. EDA differs from traditional hypothesis testing in that it is primarily used to explore what the data can tell us beyond the formal modeling. A statistical model can be utilized or not.&lt;/p&gt;

&lt;p&gt;Exploratory data analysis allows statisticians to investigate the data and even develop hypotheses that might result in additional data gathering and tests. EDA differs from initial data analysis (IDA), which is more specifically focused on resolving missing values, transforming variables as necessary, and confirming the assumptions needed for model fitting and hypothesis testing. IDA is a part of EDA.&lt;/p&gt;

&lt;p&gt;To extract precise, applicable insights from data, many techniques of cleaning, transforming, analyzing, and developing models are used. They are useful for making crucial business decisions in time-sensitive circumstances. For any firm, exploratory data analysis is crucial. It enables data scientists to do data analysis prior to drawing any conclusions. Additionally, this ensures that the results are reliable and relevant to corporate objectives.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Exploratory data analysis's purpose&lt;/strong&gt;&lt;br&gt;
The following sub-objectives are typically included in exploratory data analysis because the ultimate goal is to gain important insights.&lt;br&gt;
+Locating and eliminating data outliers&lt;br&gt;
+Time and space trends discovery &lt;br&gt;
+Find patterns related to the target&lt;br&gt;
+Developing assumptions and conducting studies to test them&lt;br&gt;
+Locating fresh data sources&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Exploratory data analysis procedures (EDA)&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;*&lt;em&gt;Data collection: *&lt;/em&gt; Because data is produced in vast quantities and in a wide range of formats across all facets of human existence, it is crucial for any business to analyze pertinent data.&lt;/li&gt;
&lt;li&gt;*&lt;em&gt;Discovering every variable and comprehending it: *&lt;/em&gt;
When the analysis process begins, the available data, which contains a wealth of information, is the primary focus. This is done by first identifying the crucial factors that influence the result and their potential effects.&lt;/li&gt;
&lt;li&gt;*&lt;em&gt;Dataset cleaning: *&lt;/em&gt;
In order to ensure that the data contains only the values that are pertinent and significant from the goal point of view, for example, null values and duplicates must be removed.&lt;/li&gt;
&lt;li&gt;&lt;p&gt;*&lt;em&gt;Find Correlated Variables: *&lt;/em&gt; By determining how one variable is related to another, it is easier to comprehend important relationships between them. Identifying a correlation between variables&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;*&lt;em&gt;Choosing the Right Statistical: *&lt;/em&gt; Methods For numerical outputs, statistical formulas provide accurate information; however, graphical illustrations are more appealing and simpler to comprehend.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;*&lt;em&gt;Visualizing and Interpreting Results: *&lt;/em&gt; After the analysis is complete, the results should be carefully observed for proper interpretation.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;In conclusion, we have comprehended the fundamentals and significance of EDA, its place in data science, and its primary goals.&lt;/p&gt;

</description>
      <category>watercooler</category>
    </item>
    <item>
      <title>Python 101: Introduction to Python for Data Science</title>
      <dc:creator>elanyon</dc:creator>
      <pubDate>Sun, 19 Feb 2023 16:51:59 +0000</pubDate>
      <link>https://dev.to/elanyon/python-101-introduction-to-python-for-data-science-k93</link>
      <guid>https://dev.to/elanyon/python-101-introduction-to-python-for-data-science-k93</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Mf2aOVUI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://th.bing.com/th/id/OIP.kuyfz6FTQ3mdnSdmr6PSvwHaFj%3Fw%3D220%26h%3D180%26c%3D7%26r%3D0%26o%3D5%26pid%3D1.7" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Mf2aOVUI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://th.bing.com/th/id/OIP.kuyfz6FTQ3mdnSdmr6PSvwHaFj%3Fw%3D220%26h%3D180%26c%3D7%26r%3D0%26o%3D5%26pid%3D1.7" alt="Alt text" width="220" height="180"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Let's get started with data science in Python by first understanding data science. Data science is all about finding and exploring data in the real world and using this knowledge to solve business problems. Some examples of data science include Customer prediction (A system can be trained on customer behaviour patterns to predict the likelihood that a customer will purchase a product)&lt;br&gt;
 and Service planning (Restaurants can predict how many customers will arrive on the weekend and plan their food inventory to meet demand).&lt;br&gt;
Now that you know what data science is, and before we dive into the topic of data science with Python, let's talk about Python.&lt;/p&gt;

&lt;p&gt;If you are curious and interested in venturing into the field of data science, then python is one essential tool that you will need as you launch your data career. Python is one of the most popular programming languages, used widely by many programmers owing to its diverse usage in Its usage in data science, the Internet of Things, artificial intelligence, and other technologies. It also has rich mathematical or statistical features. &lt;/p&gt;

&lt;p&gt;Moreover, it's a really straightforward and beautiful language that encourages good coding practices. It is therefore highly advised for beginners. Since it combines data science tools and techniques with the expressive capability of a standard programming language, Python is particularly well-liked among data scientists.&lt;/p&gt;

&lt;p&gt;There are a number of additional reasons, including:&lt;/p&gt;

&lt;p&gt;Python is comparatively quicker than other programming languages in terms of speed.&lt;br&gt;
Availability - There are numerous packages created by other users that are readily available and can be used.&lt;br&gt;
Design objective: Python's syntax responsibilities are simple to comprehend and intuitive, making it easier to create applications with intelligible code.&lt;/p&gt;

&lt;p&gt;Although there are other data science tools, such as mySQL and R, this post will concentrate on Python and how it may help with data science.&lt;/p&gt;

&lt;p&gt;Python is a straightforward programming language to learn, and it supports certain fundamental operations like adding and printing statements. But, you must import particular libraries if you wish to undertake data analysis. Many instances include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pandas is a tool for working with structured data.&lt;/li&gt;
&lt;li&gt;You may generate n-dimensional arrays with the aid of the robust library NumPy.&lt;/li&gt;
&lt;li&gt;SciPy - Offers scientific features like Fourier analysis and linear algebra&lt;/li&gt;
&lt;li&gt;Matplotlib: Mostly used for visualization.&lt;/li&gt;
&lt;li&gt;Scikit-learn is the program used for all machine learning operations.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There are additional libraries outside these as well, including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Networks &amp;amp; I graph &lt;/li&gt;
&lt;li&gt;BeautifulSoup &lt;/li&gt;
&lt;li&gt;OS &lt;/li&gt;
&lt;li&gt;TensorFlow&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>python</category>
      <category>pythonfordatascience</category>
      <category>pythonintroduction</category>
      <category>python101</category>
    </item>
  </channel>
</rss>
