JCS Analytics
JCS Analytics
  • Home
  • About
  • Privacy

JCS Analytics - We are analysts. We Ask. We Automate. We Discover.

Details
By J. Smith
J. Smith
Articles
February 12,2024
Last Updated: 02 March 2024
Hits: 873
  • Data Analyst
  • Business Analyst
  • Similarities and Differences

Data Analyst vs. Business Analyst: Similarities and Differences

Data analysts and business analysts share a common goal of improving efficiency and decision-making within an organization using data. They both play crucial roles in driving data-driven decision-making and are often well-compensated for their skills.

Similarities

  • Data-Driven Decision-Making: Both roles contribute to data-driven decision-making within their organizations.
  • Analytical Skills: Both data analysts and business analysts must have strong analytical skills to interpret data and provide insights.
  • Problem-Solving: They are both involved in identifying and solving problems, although they may approach these problems from different angles.
  • Collaboration: Both roles require collaboration with other team members and stakeholders to achieve business objectives.
  • Communication: Effective oral and written communication skills are essential for both roles to present findings and recommendations.

Intersections

  • Use of Data: Both roles intersect in their use of data to inform business decisions. Data analysts may focus more on the technical aspects of data manipulation, while business analysts may focus more on the application of data insights to business strategies.
  • Tools and Techniques: There is an overlap in some of the tools and techniques used, such as SQL for data querying and Excel for data analysis.
  • Educational Background: Individuals in both roles can come from various academic backgrounds, including business, IT, and STEM fields.
  • Career Mobility: Data analysts can transition to business analysts and vice versa, as many of the skills are transferable between the two roles.

Differences

  • Focus: Data analysts are more involved with the data itself, including sourcing, cleaning, and analyzing data. Business analysts, on the other hand, tend to focus more on business needs and recommending solutions.
  • Technical Skills: Data analysts often require a deeper knowledge of data structures, statistical programming, and data management. Business analysts might need a stronger understanding of business structures and process improvement.
  • End Goals: The end goal for a data analyst is typically to provide a clear analysis of data that can inform decisions, while a business analyst aims to use that data to improve business processes and address specific business challenges.

Data analysts and business analysts are similar in that they both utilize data to support better business outcomes. They intersect in their use of data, analytical skills, and problem-solving abilities. However, they differ in their primary focus, with data analysts being more hands-on with the data and business analysts being more involved in applying data insights to business strategies and processes.

Frequently Asked Questions

What specific educational paths or certifications are most beneficial for someone looking to pursue a career as a data analyst or business analyst?
For data analysts, degrees in computer science, statistics, mathematics, or data science are common, alongside certifications in data analysis tools like SQL, Python, and R. Business analysts often have degrees in business administration, finance, or a related field, with certifications in project management (PMP) and business analysis (CBAP) being advantageous.

How do the salaries and job outlooks for data analysts and business analysts compare, especially given the evolving tech landscape?
Generally, both fields offer competitive salaries that vary by experience, location, and industry. The demand for data analysts and business analysts is expected to grow due to the increasing reliance on data-driven decision-making across sectors.

Can you provide real-world examples or case studies where the collaboration between a data analyst and a business analyst led to significant business improvements?
While specific examples weren't detailed, collaborations between data and business analysts often involve using data insights to refine business strategies, optimize operations, or enhance customer experiences, leading to improved performance and competitiveness.

Details
By J. Smith
J. Smith
Articles
January 21,2024
Last Updated: 03 March 2024
Hits: 865
  • Tableau
  • Data Analysis
  • Data Visualization
  • Python
  • Data Cleaning

Analysis and Visualization of Public Health Agency of Canada COVID Cases

In the era of COVID-19, data has become a crucial tool in understanding and combating the pandemic. The Public Health Agency of Canada has made available a dataset that provides a comprehensive view of COVID-19 cases in the country. This dataset, updated every Tuesday, is a valuable resource for data analysts of all skill levels, offering insights into the spread and impact of the virus across provinces.

Dataset Overview

The dataset, which is available under the Open Government Licence – Canada, contains information about the number of cases and deaths at the provincial and national levels from January 31, 2020, to the present. As of January 21, 2024, the dataset has 3,090 rows and 23 columns.

Data Analysis and Cleaning with Python

The first step in working with this dataset is to clean and prepare the data for analysis. This process involves several steps, including dropping unnecessary columns and values, renaming columns, and converting data types.

Python Code at GitHub

https://github.com/jsmith6417/Public-Health-Agency-of-Canada-COVID-Cases

Steps:

  1. Drop the columns not needed: The data is aggregate, overlapping, or not needed for the visualizations in Tableau. After this step, six columns remain.
  2. Drop the values for province we don’t need: The values for 'Canada' and 'Repatriated travellers' are dropped, leaving 2,678 rows.
  3. Rename 'prname' to 'Province'.
  4. Add a column for 'Country' and populate all rows with 'Canada': This allows Tableau to automatically recognize 'Country' and 'Province' as a hierarchy, facilitating the creation of a color-coded map of Canada.
  5. Convert 'cases' and 'deaths' to numeric values: Non-numeric data such as zeros represented as dashes and blanks are replaced with NaN, which are then replaced with zeros. This simplifies filtering in Tableau and stops the missing values warning.
  6. Delete the rows where the number of cases and number of deaths are both zero: These weeks have nothing to report, so they are removed, leaving 2,117 rows.

The 'date' column is not converted to datetime in Python as Tableau automatically converts the text to dates.

Data Visualization with Tableau

Tableau is a powerful tool for creating interactive visualizations. It recognizes 'Country' and 'Province' as a hierarchy, making it easy to create a color-coded map of Canada. Two True/False calculated fields are created to filter out case counts equal to zero and death counts equal to zero:

- Cases > 0: `[numtotal_last7] > 0`
- Deaths > 0: `[numdeaths_last7] > 0`

Steps:

  1. Create interactive maps and bar charts for cases and deaths.
  2. Assembled the maps and bar charts into dashboards.
  3. Assemble the dashboards into the final presentation story points.

Visualizations at Tableau Public

https://public.tableau.com/views/PublicHealthAgencyofCanadaCOVIDCases/COVIDCaseRateandDeathRateinCanada-2020toPresent?:language=en-US&publish=yes&:display_count=n&:origin=viz_share_link

This dataset is a good resource for practicing analysis and cleaning in Python, and for creating calculated fields, sorting, grouping, and visualizing the data in Tableau. Map labels are in the tooltips to keep the presentation free of clutter.

Frequently Asked Questions

How did you decide which columns were unnecessary and should be dropped?
Since the data is updated weekly, I decided to keep only the columns with counts and rates for the last 7 days to shrink and simplify the dataset.
We have the date reported, so the reporting week and reporting year columns are not needed.
The 'pruid' and 'update' columns are for internal tracking and not necessary for creating visualizations.
The 'prnameFR' is province names in French. Since we already have the province names in English, these are not needed.

How did you handle missing or incomplete data in the dataset?
I filled in missing and non-numeric values for the counts (such as dashes) first with NA, then converted any NA values to zero.

What were the criteria for creating the True/False calculated fields in Tableau?
Checking values for each of the count columns and noting if they're greater than zero. Tableau will recognize this as boolean (T/F).
For cases > 0: [numtotal_last7] > 0
For deaths > 0: [numdeaths_last7] > 0

COVID Case Rate and Death Rate in Canada - 2020 to Present

 

Details
By J. Smith
J. Smith
Articles
October 18,2023
Last Updated: 03 November 2025
Hits: 1251
  • Tableau
  • 5K@EASD
  • Data Visualization

Exploring the 2023 5K@EASD Virtual Run: A Tableau Analysis

Delve into the fascinating statistics from the 2023 5K@EASD virtual run. This analysis serves as a testament to the power of Tableau, a tool that allows us to visualize and understand data in a matter of minutes.

You can explore the full analysis in our 5K@EASD Story Points on Tableau Public.

Story Points Breakdown

  1. Welcome: An introduction to the analysis.
  2. Participants by Country: A vibrant, color-coded map that displays the number of participants from each country.
  3. Countries with 100 or More Participants: Interactive bar charts that show the number of participants by country and gender. You can select any combination of country and gender to see how the counts change.
  4. My Bib and Results: A personal touch to the analysis.

We hope this analysis provides you with a clear understanding of the 2023 5K@EASD virtual run's reach and impact. We also hope it demonstrates the potential of Tableau as a powerful tool for data visualization and analysis.

Details
By J. Smith
J. Smith
Articles
January 7,2024
Last Updated: 03 March 2024
Hits: 886
  • Data Analytics
  • Type 2 Diabetes
  • Predictive Modelling

Data Analytics for Type 2 Diabetes

As a data analyst living with type 2 diabetes, I have a unique perspective on the intersection of data analytics and health outcomes. The power of data analytics is transforming the way we manage chronic diseases such as type 2 diabetes, leading to improved health outcomes and quality of life for patients.

Data analytics can significantly improve health outcomes for people with Type 2 Diabetes (T2D) in several ways:

  1. Predictive Analytics: Data analytics can be used to build predictive models that forecast health outcomes for individuals with T2D. These models can use patient data such as history of comorbidities and medications to predict future health outcomes, including life expectancy. Predictive analytics can also identify patients who are likely to benefit from intensified treatment, thereby improving health outcomes at lower costs.
  2. Patient-Generated Health Data (PGHD) Analysis: Large volumes of PGHD can help detect patterns of health behavior in people living with T2D. This can provide insights into current health behaviors and make predictions about future health outcomes.
  3. Intervention Evaluation: Data analysis can be used to monitor and evaluate the effectiveness of interventions. This involves collecting and analyzing data on the process and outcomes of interventions, such as changes in blood glucose levels, complications, quality of life, and patient satisfaction. The data can then be compared with baseline data and expected results to identify achievements, challenges, or areas for improvement.
  4. Big Data Analytics: Big data analytics can provide real-time analyses of large sets of varied input data to diagnose and predict complications of diabetes. This can lead to improvements in managing chronic diseases.
  5. Real-Time Health Data and Health Information Technology (HIT): Real-time Electronic Health Record (EHR) data provides a high-volume data source that can be used to assess the social needs and place-based social determinants of health (SDOH) of patients with T2D. This can help in reducing diabetes risk.
  6. Data-Driven Modelling: Data-driven models can simulate the occurrence of diabetes-associated complications and all-cause death for T2D patients over their lifetime.
  7. Data Analytics Suite: A data analytics suite can be developed for exploratory, predictive, and visual analysis of T2D data. This can help clinicians and patients formulate strategies for diabetes management.

Data analytics is a powerful tool in improving health outcomes for people with T2D by enabling predictive modeling, intervention evaluation, behavior pattern detection, real-time health data analysis, and data-driven modeling.

Please visit https://jcst2d.com/ to learn more about type 2 diabetes.

Frequently Asked Questions

How do patients contribute their data for analysis, and what are the privacy implications?
Patients contribute data through various means including electronic health records, wearable devices, and mobile apps. Privacy is protected by laws like HIPAA in the U.S., ensuring data is anonymized and securely handled to prevent unauthorized access.

What are some specific examples of interventions that have been evaluated using data analytics, and what were their outcomes?
Specific examples might include programs aimed at lifestyle modification, medication adherence, or remote monitoring systems. Outcomes often measure improvements in glycemic control, reduced hospital admissions, or enhanced patient engagement.

How accessible are these data analytics tools and models to healthcare providers, especially those in resource-limited settings?
These tools' accessibility varies widely. In resource-rich settings, hospitals and clinics might integrate sophisticated analytics into their systems. However, in resource-limited settings, the high cost and technical requirements can be significant barriers, though simpler, low-cost solutions are being developed to bridge this gap.

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

Page 7 of 9

Recent Activity

May 2026

  • Lundbeck’s AI Days Show How Companies Can Make AI Adoption Practical
  • Sovereign AI Infrastructure and the New Shape of AI Strategy

April 2026

  • Novo Nordisk Expands Its AI Strategy Through New OpenAI Partnership

Articles

  • 5K@EASD Race Results: Trends from 2023 and 2024
  • Adapting the 5K@ADA Race Results Project for 2025
  • Advanced Data Retrieval with Python
  • Aligning CGM and BGM Readings Using Python and Tableau
  • Analysis and Visualization of Public Health Agency of Canada COVID Cases
  • Bridging Data and Healthcare in the Nordics
  • Complex Web Scraping with Python
  • Creating a Calculated Field in Tableau to Get Get Data Aggregated by Month in the Correct Order
  • Data Analyst vs. Business Analyst: Similarities and Differences
  • Data Analytics for Type 2 Diabetes
  • Data Science and Responsible AI in the Pharmaceutical Industry: A Case Study of Novo Nordisk
  • Denmark's Leap into AI Innovation: A Model for Future Research and Development
  • Denmark’s Gefion AI Supercomputer Revolutionizes AI-driven Research
  • Eli Lilly’s AI Strategy: Opening High-Value Drug Discovery Models to the Biotech Ecosystem
  • Embracing AI: Balancing Augmentation, Ethics, and Environmental Impact
  • Enhancing Data Analysis and Visualization Workflows with AI
  • Exploring the 2023 5K@EASD Virtual Run: A Tableau Analysis
  • Exploring the Growth of GLP-1 RA Sales
  • How an Hour-by-Hour View Transforms Time in Range Insights
  • How Novo Nordisk is Utilizing AI for Drug Discovery

Top Subjects

  • Tableau
  • Python
  • Data Analytics
  • Novo Nordisk
  • Data Visualization
  • Tableau Visualizations
  • AI
  • 5K@EASD
  • Data Analysis
  • 5K@ADA
  • Type 2 Diabetes
  • Data Cleaning
  • Drug Discovery
  • AI Innovation
  • Quantum Computing
  • Diabetes Management
  • Race Results
  • Diabetes Awareness
  • Virtual 5K
  • Continuous Glucose Monitor
  • SQLite
  • SQLite Database Management
  • Continuous Glucose Monitoring
  • CGM Data Analysis
  • Artificial Intelligence
  • AI in Healthcare
  • Healthcare Data
  • AI in Drug Discovery
  • NVIDIA
  • Responsible AI

Contact Me

Search

End Diabetes Stigma

5K@ADA

5K@EASD

World Diabetes Day

Rochen Web Hosting

Bluesky Social

  • You are here:  
  • Home
 
Copyright © 2026 JCS Analytics. All Rights Reserved.
Joomla! is Free Software released under the GNU General Public License.