<?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: Valarie Rono</title>
    <description>The latest articles on DEV Community by Valarie Rono (@valarie_rono).</description>
    <link>https://dev.to/valarie_rono</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1861766%2Ffb17eb13-5eab-4082-8e9f-3131a0887bb7.png</url>
      <title>DEV Community: Valarie Rono</title>
      <link>https://dev.to/valarie_rono</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/valarie_rono"/>
    <language>en</language>
    <item>
      <title>How Data Science and Analytics is transforming industries today.</title>
      <dc:creator>Valarie Rono</dc:creator>
      <pubDate>Sun, 20 Apr 2025 12:35:07 +0000</pubDate>
      <link>https://dev.to/valarie_rono/how-data-science-and-analytics-is-transforming-industries-today-27m9</link>
      <guid>https://dev.to/valarie_rono/how-data-science-and-analytics-is-transforming-industries-today-27m9</guid>
      <description>&lt;p&gt;What is Data Science one might ask? Well, it is a combination of two words that is 'data' and 'science' and involves the study of data to get meaningful insights. Currently, data science and analytics has proven to be very useful in many industries and now involves more than just statistics and analysis of historical data. Industries now use machine learning and Artificial Intelligence for prediction of future trends from historical data.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Industries that have been transformed through Data Science&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;In the recent years, we have seen a great transformation in industries thanks to Data Science. In this section, we are going to see some of the industries that have been highly transformed by Data Science and Analytics.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Health&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Data Science has enabled predicting of patient outcomes through the analysis of past data which helps in earlier intervention and personalized treatment plans.&lt;br&gt;
It has enabled real-time monitoring of patient health through devices like smart watches which track the daily health stats of an individual.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Education&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Through the analysis of student data, the education sector is now able to predict students performances, the enrolment trends of students through out the year, which will enable better planning for the future.&lt;br&gt;
This analysis also helps the education sector determine how resources will be allocated in all the schools across the country.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Finance&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;By analysing large volumes of data, the financial sector is able to detect fraudulent transactions.&lt;br&gt;
Analysing of data has also enabled the financial sector to be able to determine whether to give out loans to an individual and the possibility of repayment.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Agriculture&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Analysis of data can help predict crop yields through analysing historical data and  weather patterns which helps farmers plan when to harvest.&lt;br&gt;
It can also help in pest infestation prevention through studying of trends in the past historical data and looking for ways to prevent the infestation from happening.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. Transport&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Data analysis has enabled mapping out of efficient delivery routes considering real-time traffic updates and weather forecast which minimizes travel time and consumption of fuel.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Conclusion&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;In conclusion, Data Science and analytics has led to the growth of so many industries, and continues to do so. In 5-10 years many people will have embraced AI which is as a result of Data Science and we will be able to see more innovations and creativity across all industries.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Understanding Your Data: The Essentials of Exploratory Data Analysis</title>
      <dc:creator>Valarie Rono</dc:creator>
      <pubDate>Mon, 12 Aug 2024 14:27:14 +0000</pubDate>
      <link>https://dev.to/valarie_rono/understanding-your-data-the-essentials-of-exploratory-data-analysis-j7m</link>
      <guid>https://dev.to/valarie_rono/understanding-your-data-the-essentials-of-exploratory-data-analysis-j7m</guid>
      <description>&lt;p&gt;Exploratory Data Analysis(EDA) is one of the fundamental steps in a Data Science project. In this article we will dive deep into what EDA is and its applications and why it is important in the Data Science world.&lt;/p&gt;

&lt;h3&gt;
  
  
  What is Exploratory Data Analysis?
&lt;/h3&gt;

&lt;p&gt;Exploratory Data Analysis is a technique used by Data Scientists/Analysts to analyse and investigate datasets and summarize the main characteristics mostly using data visualization tools such as &lt;code&gt;matplotlib&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;EDA helps us identify errors in a dataset, understand patterns in a dataset and also detect outliers. This step is quite useful because it helps one provide valid results from a dataset.&lt;/p&gt;

&lt;h3&gt;
  
  
  Steps in Exploratory Data Analysis
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;1. Understand the Data and Problem&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;First step is to look at the dataset we are dealing with and trying to understand what problem we are trying to solve. Here we set out clear objectives of what we want to achieve&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Data Collection&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;Here we import our dataset into the environment we are using i.e. if we are using &lt;code&gt;pandas&lt;/code&gt; to load a csv file we use the following command;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;df = pd.load_csv('weather_data.csv')&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;We then inspect the dataset, checking the rows and columns, any missing data or any errors in the dataset&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Data Cleaning&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In data cleaning we will look at a few things i.e. ;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Remove any duplicates in the dataset&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Check for any missing values-impute or remove any missing values&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Fix any apparent errors in the dataset&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Convert columns to appropriate data types&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;4. Data Visualization&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Now that we have explored and cleaned our data, we can present our findings graphically in order for it to be consumed by anyone who does not understand the dataset in its raw form.&lt;br&gt;
Some of the visualization tools we can use include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Bar Charts&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Box plots&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Scatter plots&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Heatmaps and many more.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Types of Exploratory Data Analysis
&lt;/h3&gt;

&lt;p&gt;There are three main types of EDA namely;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Univariate Analysis&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Bivariate Analysis&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Multivariate Analysis&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  a). Univariate Analysis
&lt;/h4&gt;

&lt;p&gt;Involves looking at one variable at a time. This can help you identify outliers. We can use &lt;em&gt;Histogram&lt;/em&gt; to present this graphically .&lt;/p&gt;

&lt;p&gt;Example of a univariate analysis;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqpajapdrvabkhe57pliy.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqpajapdrvabkhe57pliy.jpg" alt="Example of Univariate Analysis" width="220" height="125"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  b). Bivariate Analysis
&lt;/h4&gt;

&lt;p&gt;Involves taking at least two variables. This can help you identify the relationship between two variables. Graphically we can use &lt;em&gt;Scatter plot&lt;/em&gt; to represent this data.&lt;/p&gt;

&lt;p&gt;Example of a Bivariate analysis;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fogemmkka67h15ncvtpdw.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fogemmkka67h15ncvtpdw.jpg" alt="Bivariate Analysis" width="225" height="224"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  c). Multivariate Analysis
&lt;/h4&gt;

&lt;p&gt;Involves taking three or more features to help identify the relationship between the variables. Graphically we can use &lt;em&gt;Pair plot&lt;/em&gt; &lt;br&gt;
to represent this data.&lt;/p&gt;

&lt;p&gt;Example of a Multivariate analysis;  &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fl2lu8tb4syokr2nzgn4q.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fl2lu8tb4syokr2nzgn4q.png" alt="Multivariate Analysis" width="314" height="160"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Tools used in Exploratory Data Analysis
&lt;/h3&gt;

&lt;p&gt;We use different tools in EDA for example Python, R etc. In this article we will focus more on Python.&lt;/p&gt;

&lt;p&gt;Libraries used in EDA in Python include ;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Pandas&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;NumPy&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Matplotlib&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Seaborn&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Conclusion
&lt;/h3&gt;

&lt;p&gt;In conclusion, EDA is very important in any problem being looked at. For one to find conclusive and valid results we must perform EDA as one of the key steps in providing a solution to real life problems.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Building a Successful Career in Data Science</title>
      <dc:creator>Valarie Rono</dc:creator>
      <pubDate>Sun, 04 Aug 2024 19:00:45 +0000</pubDate>
      <link>https://dev.to/valarie_rono/building-a-successful-career-in-data-science-j8h</link>
      <guid>https://dev.to/valarie_rono/building-a-successful-career-in-data-science-j8h</guid>
      <description>&lt;p&gt;Employment in Data Science is projected to grow by 35% in the next 10 years. This clearly shows how a career in data science is good choice for anyone looking to venture into the data world.&lt;/p&gt;

&lt;p&gt;In this article we will dive deep into the world of data science and how to build a successful career in this field. We will look at what data science really entails, the skills needed, education, industries where data scientists are needed, job search and many more.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Data Science?
&lt;/h2&gt;

&lt;p&gt;Data Science is the field of study that involves collecting, analysing, and interpreting large sets of data to uncover insights, patterns and trends  that can be used to make informed decisions and solve real-world problems.&lt;/p&gt;

&lt;h2&gt;
  
  
  Skills needed in Data Science
&lt;/h2&gt;

&lt;p&gt;For one to be successful in the field of Data Science, one has to have a good understanding of different things. Some of the basic skills include;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Mathematics&lt;/strong&gt; - A good understanding of &lt;em&gt;probability&lt;/em&gt; and &lt;em&gt;statistics&lt;/em&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Programming&lt;/strong&gt; - One of the languages used is &lt;code&gt;Python&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Data Visualization&lt;/strong&gt; - Representing complex data by plotting using &lt;code&gt;matplotlib&lt;/code&gt;,  &lt;em&gt;Power Bi&lt;/em&gt;, &lt;code&gt;Seaborn&lt;/code&gt; etc&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;For more advanced skills we need ;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Database Management&lt;/strong&gt; - A good understanding of RDBMS such as &lt;code&gt;MySQL&lt;/code&gt;, &lt;code&gt;PostgreSQL&lt;/code&gt; etc.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Machine Learning&lt;/strong&gt; - We need this skill to be able to build advanced models using tools like &lt;code&gt;Scikit-Learn&lt;/code&gt; and &lt;code&gt;PyTorch&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Education background
&lt;/h2&gt;

&lt;p&gt;You can learn data science through different avenues. Some of these include :&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;University/Colleges -Through Bachelor's degree, Masters or PHD programs in Data Science, Computer Science, Mathematics, Statistics and many more. This way you way will get an in-depth understanding of data science and all related fields.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Bootcamps - Bootcamps offer Data Science for a few months, These bootcamps help people completely starting out or need refresher courses on the said skill.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Self taught - There are many online platforms i.e. Coursera, Udemy etc that offer these courses at a fee. Learning through YouTube videos is also one of the ways you can learn on your own&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Fields where Data Science is used
&lt;/h2&gt;

&lt;p&gt;Data Science is used in many industries including :&lt;br&gt;
      - Healthcare&lt;br&gt;
      - Finance&lt;br&gt;
      - Transport industry&lt;br&gt;
      - Gaming etc&lt;/p&gt;

&lt;h2&gt;
  
  
  Job Searching
&lt;/h2&gt;

&lt;p&gt;After learning and gaining skills in Data Science it is now time to apply the skills in real life situations and solve problems.&lt;/p&gt;

&lt;p&gt;The first step in job searching is having projects you have worked on and a portfolio or GitHub account. This is essential because a recruiter will be able to see the projects you have worked on and gauge your level of proficiency from that.&lt;/p&gt;

&lt;p&gt;The next step is to tailor make your CV/Resume according to the skills you have and the job you want to apply for. Here you can start your education background, professional experience if any, projects done etc.&lt;/p&gt;

&lt;p&gt;Last step is to go through LinkedIn and job sites and start the job hunting process. This may be the hardest part but eventually you will get a job.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;You have come a long way from day one of deciding where to learn data science to now looking for a job. The journey might be long and hard but believe in yourself, at the end your work will speak for you. All the best!!&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
