<?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: Jake Cupani</title>
    <description>The latest articles on DEV Community by Jake Cupani (@jakecupani).</description>
    <link>https://dev.to/jakecupani</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%2F333334%2F3ac1dfc5-8ae9-4b46-a1c7-bf247cc25fc3.png</url>
      <title>DEV Community: Jake Cupani</title>
      <link>https://dev.to/jakecupani</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jakecupani"/>
    <language>en</language>
    <item>
      <title>NASA Meteorite Analysis ☄️</title>
      <dc:creator>Jake Cupani</dc:creator>
      <pubDate>Sun, 09 Mar 2025 17:35:31 +0000</pubDate>
      <link>https://dev.to/jakecupani/nasa-meteorite-analysis-1ol9</link>
      <guid>https://dev.to/jakecupani/nasa-meteorite-analysis-1ol9</guid>
      <description>&lt;h2&gt;
  
  
  &lt;strong&gt;Motivation&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;The heart of my research project comes from my understanding and passion for Astronomy. In fact, in my undergraduate studies at the University of Maryland, I minored in Astronomy and interned at NASA Goddard for two years. Due to these experiences, I thought that this class project would be a great opportunity to apply the statistical methods learned in class to some real world astronomical data from NASA. Meteorites are much more than just space rocks, they can provide us with crucial information about everything from solar system formation to the origins of life on Earth (American Museum of Natural History, n.d.). Furthermore, according to the Planetary Science Institute, approximately 500 meteorites land on the Earth’s surface every year with only 10 recovered (Planetary Science Institute, 2019). This approximation tells us that there must be plenty of meteorites still to be discovered, which means there’s still lots of insights yet to be made from meteorites. These factors are what inspired me to pursue this project.&lt;/p&gt;


 
&lt;h2&gt;
  
  
  &lt;strong&gt;Project Summary&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;The goal of this project is to identify the frequency of meteorite landings throughout different time periods, most common geographic regions of meteorites, and the differences between meteorite landings in the northern and southern hemispheres respectively. The goal of this project would be an analytical pipeline to identify trends in meteorite landings and their respective geographical locations. &lt;/p&gt;



&lt;h2&gt;
  
  
  &lt;strong&gt;Project Contributions&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;In this project, I have contributed a comprehensive analysis that identifies what specific periods in the last century have experienced the most and least amount of meteorite landings. Additionally, this project makes use of the geographical coordinate data to compose detailed world maps of meteorite landing frequencies. Lastly, a hypothesis test was conducted to identify if northern hemisphere meteorite masses are significantly different from southern hemisphere meteorite masses. &lt;/p&gt;

&lt;p&gt;I have addressed 4 main research questions in my analysis. The first question asks what years have the highest and lowest frequency of meteorite landings in different time periods within the last century. Next, I ask what areas of the world do meteorite landings occur most often and if this distribution changes over time. My third question asks what the distribution of meteorite landings looks like. Lastly my fourth question is if northern and southern hemisphere meteorite masses are significantly different. &lt;/p&gt;



&lt;h2&gt;
  
  
  &lt;strong&gt;Methodology&lt;/strong&gt;
&lt;/h2&gt;



&lt;h3&gt;
  
  
  &lt;strong&gt;Data Collection&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;The dataset for my analysis is the Meteorite Landings dataset developed by NASA. The data was downloaded directly from NASA’s Kaggle repository (NASA &amp;amp; Kaggle, 2016). The dataset is also directly available from NASA’s Data Portal. The data was in normal Comma Separated Value format (CSV), which made it relatively easy to import into Python. There were also over 45,000 rows of data, which provided the analysis with plenty of samples to work with. The programming for this analysis was done via Google Colab for easy access. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Data Curation, Cleaning, &amp;amp; Annotation&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;According to the Kaggle repository, some of the date information was incorrectly parsed when the dataset was created, so only data from years 1800-2016 were used. Additionally, some of the geolocation data had 0 degrees longitude and latitude, and were said to be treated as NA. Any rows with NA values in any variables were filtered out using the .dropna() function in Pandas to ensure data validity. In order to address one of my research questions, a new column had to be made to easily distinguish which hemisphere (Northern or Southern) the meteorite was found in or fell. Any other columns that were not used were dropped. &lt;/p&gt;

&lt;p&gt;Summary of variables:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
  &lt;thead&gt;
    &lt;tr&gt;
      &lt;th&gt;Variable&lt;/th&gt;
      &lt;th&gt;Description&lt;/th&gt;
      &lt;th&gt;Data Type&lt;/th&gt;
    &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;td&gt;Mass&lt;/td&gt;
      &lt;td&gt;The mass of the meteorite in grams.&lt;/td&gt;
      &lt;td&gt;INT&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;Year&lt;/td&gt;
      &lt;td&gt;The year the meteorite fell or was found.&lt;/td&gt;
      &lt;td&gt;INT&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;reclat&lt;/td&gt;
      &lt;td&gt;Latitude coordinate.&lt;/td&gt;
      &lt;td&gt;FLOAT&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;reclong&lt;/td&gt;
      &lt;td&gt;Longitude coordinate.&lt;/td&gt;
      &lt;td&gt;FLOAT&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;GeoLocation&lt;/td&gt;
      &lt;td&gt;Set of longitude and latitude coordinates.&lt;/td&gt;
      &lt;td&gt;SET&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;Hemisphere&lt;/td&gt;
      &lt;td&gt;Hemisphere in which a meteorite was found or fell.&lt;/td&gt;
      &lt;td&gt;STR&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;



&lt;h2&gt;
  
  
  &lt;strong&gt;Solution Framework&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Since I completed my analysis using Google Colab, I was able to easily organize my code into sections. In my Google Colab notebook, I separated my code into the following sections: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Imports (Code dependencies)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;About the Data (Brief overview of the data)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;What years had the highest and lowest frequency of meteorite landings in past and present? &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;In what areas of the world were meteorite landings most common? Does the distribution change over the years? &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;What is the distribution of masses amongst all of the meteorites?&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;What differences are there in the masses of Northern vs. Southern Hemisphere meteorites? &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Key Points (Results)&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;By separating the notebook into these different sections, I was able to clearly address all of my research questions in an organized manner. Additionally, for the geographic coordinate plots, I defined a function that used a dataframe as an argument so that I can easily reuse the code and plot graphs for different time periods. Furthermore, I have commented much of my code to ensure that anyone reading it can easily follow along with my thought process. This is how I organized my data pipeline. &lt;/p&gt;



&lt;h2&gt;
  
  
  &lt;strong&gt;Experiment Result&lt;/strong&gt;
&lt;/h2&gt;



&lt;h3&gt;
  
  
  &lt;strong&gt;Experiment Setup&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;For my first experiment, which looks at frequency of meteorite landings over different time periods, I defined two main time periods of past and present. I defined the “past” time period as any year between 1990 and 1950. For the “present” time period, I defined it as any year after 1990. These two time periods I think give a good representation of “historical” versus “current” data. For my next question which looks at geographic coordinate data of meteorite landings, my setup was to overlay a scatterplot of the coordinates onto a world map using the Geopandas library. This allowed me to create images for each time period, and then visually compare where the differences in meteorite landings occurred. In my hypothesis test, I wrote out the null hypothesis and alternative hypothesis in comments in the code, so it is easy to see what I am testing. I then created comments for each step of the calculations including the point estimate, degrees of freedom, standard error, t-score, and p-value. Furthermore, I added print statements throughout my code to show what the values at each step were respectively.I hope that by organizing my experiment this way it is easy for others to follow. &lt;/p&gt;



&lt;h2&gt;
  
  
  &lt;strong&gt;Results &amp;amp; Findings&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;In my analysis, I was able address all of the questions initially stated. The results from this analysis are also listed in the “Key Points” section of my Google Colab notebook for easy access. The first question asked what years had the highest and lowest frequencies of meteorite landings in the past and present. In this analysis, I created line plots for each time period to show the change in frequency over time. &lt;/p&gt;

&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%2F99gpjjfe7h4o4ppcqivn.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%2F99gpjjfe7h4o4ppcqivn.png" alt="Present Frequencies of Meteorite Landings by Year" width="609" height="354"&gt;&lt;/a&gt;&lt;/p&gt;

&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%2F0jf54kjix535u8u0ozob.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%2F0jf54kjix535u8u0ozob.png" alt="Present Frequencies of Meteorite Landings" width="609" height="359"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;As we can see from the figures above, it was found that 1937 and 2003 were the years with the highest frequency of meteorite landings in the past and present respectively,while 1901 and 2013 had the least number of meteorite landings in the past and present respectively.The next result I found in my analysis was that there was a general trend of meteorites landing in the western US, Southern South America, Africa, Southern Australia, and parts of Europe. Another major trend that I noticed is that most meteorites seem to land along the 25°N and -25°S latitude lines. These main trends can be seen by directly comparing the plots of present and past meteorites, as shown below.&lt;/p&gt;

&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%2Fhao5sable4qgjpko1bly.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%2Fhao5sable4qgjpko1bly.png" alt="Bar Plot by Year" width="595" height="354"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Present Meteorites (Fig.4)&lt;/p&gt;

&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%2Ffqdot9m6czd289amyg29.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%2Ffqdot9m6czd289amyg29.png" width="605" height="374"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The next research finding that I made applies to the masses of the meteorites. It was found that a majority of the meteorite masses fall below 250 grams (Fig. 5). &lt;/p&gt;

&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%2F2nvql4635kps0fz9nvo3.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%2F2nvql4635kps0fz9nvo3.png" width="381" height="368"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;From this distribution plot, we can tell that the distribution of masses of meteorites is highly skewed to the right and is unimodal. If we plot the meteorites that are abnormally large compared to the meteorites that fall below 250 grams, we get the following plots (Fig. 6 &amp;amp; 7). &lt;/p&gt;

&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%2Fahs4073zr8pg5tnzsi6q.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%2Fahs4073zr8pg5tnzsi6q.png" width="605" height="374"&gt;&lt;/a&gt;&lt;/p&gt;

&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%2F4qdubxeixkqhltninyqo.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%2F4qdubxeixkqhltninyqo.png" width="605" height="374"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;From these plots we can see that there seem to be more large mass meteorites in Southern Africa, the US, and parts of South America. Lastly, I found in my analysis the differences between meteorites in the Northern and Southern Hemispheres respectively. For example, by plotting the average masses of northern and southern hemisphere meteories, we can see that Northern hemisphere meteorites have a much higher average mass than Southern hemisphere meteorites (Fig. 8). &lt;/p&gt;

&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%2F5cfifs1mmon24lfnitl7.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%2F5cfifs1mmon24lfnitl7.png" width="634" height="343"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This finding led me to inquire whether there is a statistically significant difference in the masses of northern and southern hemisphere meteorites. From this research question I developed my null hypothesis and alternative hypothesis: &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;H0: There is no difference between the masses of meteorites in the hemispheres. (avg difference 0)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;HA: There is a difference between the masses of meteorites in the hemispheres. (avg difference!=0)&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I then conducted a hypothesis test and calculated the p-value with an alpha set at 0.05 to test for statistical significance. Since my p-value was around 0.0011, we can reject the null hypothesis and conclude that there is a significant difference in the masses of meteorites in the Northern and Southern Hemisphere. More research is needed to determine if there is any reason for this relationship. &lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Limitations&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;Although there were many interesting results from this experiment, there were also some limitations that need to be taken into account. The first limitation was that the highly skewed distribution of masses might impact the validity of the hypothesis test that was conducted since it is not normally distributed. However, in future analysis this could possibly be fixed by applying a transformation of the data, such as a log transformation. Additionally, while the most frequent meteorite landing regions were identified, future analysis could go into finer detail as to what specific areas of these regions experience more landings. This would give us greater insight into if there are any specific places in the world that experience more meteorite landings than others. Lastly, my limited knowledge on meteorite class types made it hard to use that variable that was originally present in the data. This variable could prove to be useful in a future analysis. &lt;/p&gt;



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

&lt;p&gt;Overall, I believe that the results that the experiments yielded were very interesting and I thoroughly enjoyed researching this topic. This research has reaffirmed to me that there is still much more we can learn about meteorites and what information they gleam about other astronomical processes. Although there are some limitations to this study, I am confident that further research would greatly improve these experiments. &lt;/p&gt;



&lt;h2&gt;
  
  
  &lt;strong&gt;References&lt;/strong&gt;
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://www.kaggle.com/nasa/meteorite-landings" rel="noopener noreferrer"&gt;NASA &amp;amp; Kaggle. (2016, November 5). &lt;em&gt;Meteorite Landings&lt;/em&gt; [The Meteoritical Society collects data on meteorites that have fallen to Earth from outer space. This dataset includes the location, mass, composition, and fall year for over 45,000 meteorites that have struck our planet]. NASA. Retrieved from &lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://www.amnh.org/exhibitions/permanent/meteorites/meteorites/what-is-a-meteorite#:%7E:text=Meteorites%20from%20asteroids%20and%20even,of%20nickel%20and%20iron%20metal" rel="noopener noreferrer"&gt;American Museum of Natural History. (n.d.). &lt;em&gt;What Are Meteorites? Ancient Clues to Our Solar System&lt;/em&gt;. Retrieved December 11, 2020, from &lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://www.psi.edu/epo/faq/meteor.html#:%7E:text=To%20date%2C%20there%20have%20been,less%20than%2010%20are%20recovered" rel="noopener noreferrer"&gt;Planetary Science Institute. (2019, April 16). &lt;em&gt;FAQ - Meteoroids/Meteorites&lt;/em&gt;. Retrieved from &lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Google Colab Link: &lt;a href="https://colab.research.google.com/drive/1oaIU6OETfJVevdWVKvzq2npXM3fNgg0G?usp=sharing" rel="noopener noreferrer"&gt;Meteorite Landings Analysis Notebook&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;




&lt;p&gt;Enjoyed this blog post? Consider &lt;a href="https://dub.sh/SYe1qWe" rel="noopener noreferrer"&gt;supporting me on Ko-Fi&lt;/a&gt;! &lt;/p&gt;

&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%2Fstorage.ko-fi.com%2Fcdn%2Fuseruploads%2FH2H36JT72%2Fqrcode.png%3Fv%3D92cfb12a-2e5a-4b3b-a4b3-49124090aab3%3Fv%3D2" 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%2Fstorage.ko-fi.com%2Fcdn%2Fuseruploads%2FH2H36JT72%2Fqrcode.png%3Fv%3D92cfb12a-2e5a-4b3b-a4b3-49124090aab3%3Fv%3D2" width="328" height="328"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>datascience</category>
    </item>
    <item>
      <title>My Favorite FREE Resources for Learning Technical Skills</title>
      <dc:creator>Jake Cupani</dc:creator>
      <pubDate>Wed, 19 Jul 2023 18:20:23 +0000</pubDate>
      <link>https://dev.to/jakecupani/my-favorite-free-resources-for-learning-technical-skills-4j17</link>
      <guid>https://dev.to/jakecupani/my-favorite-free-resources-for-learning-technical-skills-4j17</guid>
      <description>&lt;p&gt;Finding quality, &lt;strong&gt;free&lt;/strong&gt;, online resources for learning technical skills can be hard.&lt;/p&gt;

&lt;p&gt;Here's some of my personal favorite &lt;strong&gt;✨ FREE ✨&lt;/strong&gt; resources for learning technical topics across disciplines including &lt;strong&gt;Data Science&lt;/strong&gt;, &lt;strong&gt;Machine Learning&lt;/strong&gt;, &lt;strong&gt;Programming&lt;/strong&gt;, and even &lt;strong&gt;Generative AI&lt;/strong&gt;!&lt;/p&gt;

&lt;p&gt;1️⃣ &lt;a href="https://www.freecodecamp.org/" rel="noopener noreferrer"&gt;Freecodecamp.org&lt;/a&gt; : With access to over 9000+ tutorials and tons of technical certifications, I can't recommend this one enough.&lt;/p&gt;

&lt;p&gt;2️⃣ &lt;a href="https://www.kaggle.com/learn" rel="noopener noreferrer"&gt;Kaggle Learn&lt;/a&gt; : You might be familiar with Kaggle as a place for getting good datasets, but they also have lots of Data Science tutorials you can go through for free with a built-in coding environment!&lt;/p&gt;

&lt;p&gt;3️⃣ &lt;a href="https://www.linkedin.com/learning/paths/career-essentials-in-generative-ai-by-microsoft-and-linkedin?lipi=urn%3Ali%3Apage%3Ad_flagship3_pulse_read%3BURtdda3LRvqQD%2FMybXD%2BPw%3D%3D" rel="noopener noreferrer"&gt;Career Essentials in Generative AI by Microsoft and LinkedIn&lt;/a&gt; : This free LinkedIn Learning course will teach you all you need to know about the fundamentals of Generative AI and the ethics of artificial intelligence.&lt;/p&gt;

&lt;p&gt;4️⃣ &lt;a href="https://book.thedatascienceinterviewproject.com/" rel="noopener noreferrer"&gt;The Data Science Interview Book&lt;/a&gt; : Need a refresher on data science fundamentals or statistics? This free site will break down everything you need to know to ace a typical data science interview.&lt;/p&gt;

&lt;p&gt;5️⃣ &lt;a href="https://platform.stratascratch.com/" rel="noopener noreferrer"&gt;Stratascratch&lt;/a&gt; : This site is a great place to practice Data Science and SQL coding problems. The free tier has 600+ data science coding questions, 500+ data science machine learning, product sense, statistics, probability, system design questions, and 50+ data science projects.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;⭐ Like + Follow if you found this valuable! ⭐&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>datascience</category>
      <category>codenewbie</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
    <item>
      <title>Top 5 Tips for Creating Effective Data Visualizations 📊</title>
      <dc:creator>Jake Cupani</dc:creator>
      <pubDate>Thu, 06 Jul 2023 16:11:20 +0000</pubDate>
      <link>https://dev.to/jakecupani/top-5-tips-for-creating-effective-data-visualizations-4bff</link>
      <guid>https://dev.to/jakecupani/top-5-tips-for-creating-effective-data-visualizations-4bff</guid>
      <description>&lt;p&gt;Data visualization is a powerful way to communicate complex information and insights to your audience. But how do we create effective and engaging data visualizations that stand out and get noticed?&lt;br&gt;
&lt;br&gt;&lt;br&gt;
&lt;strong&gt;These are my Top 5 tips for creating ✨beautiful✨ and effective📈 data visualizations:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Choose the right visualization for the job ✅&lt;/strong&gt;&lt;br&gt;
Different types of visualizations are better for different contexts. For example, bar charts are good for comparing categories, line graphs are good for showing trends over time, and maps are good for showing geographic data. Choose the format that best suits your data and your message.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Use predictable patterns 📐&lt;/strong&gt;&lt;br&gt;
For the most part, we are all visual learners. We tend to look for familiar patterns and cues when we see a visualization. We are visual, pattern seeking creatures after all! Use common conventions such as placing the most important information at the top left, using consistent fonts and colors, and aligning elements neatly. Make sure to follow the Web Content Accessibility Guidelines (WCAG) 2 as well when creating data visualizations. Remember, designing for accessibility is designing for all.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Use color with purpose 🌈&lt;/strong&gt;&lt;br&gt;
Color is one of the most effective ways to draw attention and convey meaning in a visualization. Color can also be used to highlight important information, differentiate or compare groups, or show relationships. However, avoid using too many colors, as this might take away from the point you are trying to get across. Ensure that when you use color, it has a purpose and isn't just for aesthetic reasons.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Keep it simple 💯&lt;/strong&gt;&lt;br&gt;
Sometimes less is more. Keeping complexity of individual pages to a minimum will ensure that users don't feel overwhelmed with information. Try to keep the number of total visualizations on any individual page no more than five.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. Let your visualizations breathe 🧘&lt;/strong&gt;&lt;br&gt;
We all need our personal space, and so do your visualizations! White space is your friend when it comes to data visualization. It helps you organize your charts and graphs, and it makes them easier to read and understand. White space also gives your data visualizations a clean and professional look. So don't be afraid to leave some blank areas around your data. Trust me, your audience will appreciate it!&lt;/p&gt;

&lt;p&gt;&lt;br&gt;&lt;br&gt;
⭐&lt;strong&gt;Like + Follow if you found this intersting&lt;/strong&gt;⭐&lt;/p&gt;

&lt;p&gt;More blog posts like this over on &lt;a href="https://jakecupani.github.io/blog" rel="noopener noreferrer"&gt;my website&lt;/a&gt; and my &lt;a href="https://linkedin.com/in/jakecupani" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt; page.&lt;/p&gt;

&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%2F6jw0j9by4sbp9pnepwms.jpeg" 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%2F6jw0j9by4sbp9pnepwms.jpeg" alt="Top 5 Data Visualization Tips by Jake Cupani" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>datascience</category>
      <category>learning</category>
      <category>design</category>
      <category>ux</category>
    </item>
  </channel>
</rss>
