Posts

Showing posts from March, 2025

LIS 4317 Module #10 Assignment

Image
Color Gradient Based on a Continuous Variable Style : Scatter Plot with a color gradient (based on a continuous variable qsec). Do you like the visualization? Why? Yes. The color gradient from yellow to dark blue effectively shows the variation in quarter-mile time across points. It’s visually appealing and functionally informative. Is the Headline Accurate? Yes. The title "Quarter-Mile Time Gradient on MPG vs Weight" is accurate, clearly describing the visual mapping. Does the visualization support the title narrative? Yes. The scatter plot shows mpg vs wt and color encodes qsec, aligning with the title. Does the visualization lie? No. It presents data truthfully and avoids distortions. Unnecessary Graphic Elements? No unnecessary elements. Clean and focused on the data. Like or Dislike (Design, Color, Layout)? Like. The yellow-to-dark blue gradient is effective for continuous data, and the layout is clean. CODE: ggplot(mtcars, aes(x = wt, y = mpg, color = qs...

LIS 4317 Module #9 Assignment

Image
Multivariate visualization is an effective way to explore relationships between multiple variables simultaneously. In this graph, we inputted: X-axis : Horsepower (hp ) Y-axis : Miles per gallon (mpg) Color : Number of cylinders (cyl) Size : Weight (wt) The patterns identified are: Cars with higher horsepower tend to have lower fuel efficiency. Heavier cars (more prominent points) usually have more cylinders. The distinction between different cylinder groups can be observed through color. 5 Design Principles Alignment The axes and labels are well-aligned, ensuring readability. The legend is positioned appropriately to avoid clutter. Repetition The same color scheme is used consistently for cylinder categories. Labels and formatting maintain consistency across variables. Contrast The different colors for cylinder groups provide clear differentiation. The white background ensures the data stands out. Proximity Related elements (title, labels, legend) are...

LIS 4317 Module #8 Assignment

Image
In this post, I analyze relationships within the mtcars dataset using scatter plots with regression lines, following Stephen Few’s recommendations for effective visual analytics. The goal is to explore how miles per gallon (mpg) correlates with horsepower (hp) and weight (wt) while maintaining clarity and ease of comparison through a grid layout. After creating the code, and reviewing the data some findings are: MPG vs Horsepower : The scatter plot shows a negative correlation —as horsepower increases, fuel efficiency (mpg) decreases. MPG vs Weight : A similar negative correlation is observed—heavier cars tend to have lower fuel efficiency. Both relationships align with expectations in automotive performance, where higher power and heavier weight generally lead to higher fuel consumption. Stephen Few emphasizes clarity, simplicity, and effective comparison in visual analytics. His recommendation to use a grid layout enhances comparative analysis by keeping related visualizatio...

LIS 4317 Module #7 Assignment

Image
  In visual analytics, Stephen Few strongly emphasizes comparability, clarity, and efficient grid layouts. My scatter plots follow his guidelines as follows: Grid-Based Comparison Layout: It is easier to visually compare various factors influencing MPG when the scatter plots are arranged in a 2x2 grid. This approach enables side-by-side analysis and is significantly better than individual, unstructured graphs. Distributions Using Scatter Plots: Few people argue that scatter plots are great for correlations between continuous variables, which is appropriate. There are unmistakable trends: MPG and weight, horsepower, and disp are negatively correlated. Possible Drawbacks of Few's Method: Regression lines could enhance interpretation even if scatter plots are an effective way to display correlations. Few also stress the need to eliminate unnecessary clutter; our graphics adhere to this, although a box plot or density plot may better illustrate distributions.