16 C
New York
Tuesday, June 11, 2024

What’s Exploratory Information Evaluation (EDA) and How Does it Work?


Introduction

Exploratory Information Evaluation (EDA) is a strategy of describing the info via statistical and visualization strategies as a way to deliver vital points of that knowledge into focus for additional evaluation. This entails inspecting the dataset from many angles, describing & summarizing it with out making any assumptions about its contents.

“Exploratory Information evaluation is an perspective, a state of flexibility, a willingness to search for these issues that we imagine are usually not there, in addition to these we imagine to be there”

– John W. Tukey

EDA is a big step to take earlier than diving into statistical modeling or machine studying, to make sure the info is actually what it’s claimed to be and that there are not any apparent errors. It ought to be a part of knowledge science tasks in each group.

Studying Aims

  1. Study what Exploratory Information Evaluation (EDA) is and why it’s vital in knowledge analytics.
  2. Perceive how to take a look at and clear knowledge, together with coping with single variables.
  3. Summarize knowledge utilizing easy statistics and visible instruments like bar plots to search out patterns.
  4. Ask and reply questions in regards to the knowledge to uncover deeper insights.
  5. Use Python libraries like pandas, NumPy, Matplotlib, and Seaborn to discover and visualize knowledge.

This text was printed as part of the Information Science Blogathon.

What’s Exploratory Information Evaluation?

Exploratory Information Evaluation (EDA) is like exploring a brand new place. You go searching, observe issues, and attempt to perceive what’s occurring. Equally, in EDA, you have a look at a dataset, try the completely different elements, and check out to determine what’s taking place within the knowledge. It entails utilizing statistics and visible instruments to grasp and summarize knowledge, serving to knowledge scientists and knowledge analysts examine the dataset from varied angles with out making assumptions about its contents.

Right here’s a typical course of:

  • Have a look at the Information: Collect details about the info, such because the variety of rows and columns, and the kind of data every column comprises. This consists of understanding single variables and their distributions.
  • Clear the Information: Repair points like lacking or incorrect values. Preprocessing is important to make sure the info is prepared for evaluation and predictive modeling.
  • Make Summaries: Summarize the info to get a basic concept of its contents, akin to common values, widespread values, or worth distributions. Calculating quantiles and checking for skewness can present insights into the info’s distribution.
  • Visualize the Information: Use interactive charts and graphs to identify traits, patterns, or anomalies. Bar plots, scatter plots, and different visualizations assist in understanding relationships between variables. Python libraries like pandas, NumPy, Matplotlib, Seaborn, and Plotly are generally used for this goal.
  • Ask Questions: Formulate questions based mostly in your observations, akin to why sure knowledge factors differ or if there are relationships between completely different elements of the info.
  • Discover Solutions: Dig deeper into the info to reply these questions, which can contain additional evaluation or creating fashions, together with regression or linear regression fashions.

For instance, in Python, you’ll be able to carry out EDA by importing essential libraries, loading your dataset, and utilizing capabilities to show primary data, abstract statistics, test for lacking values, and visualize distributions and relationships between variables. Right here’s a primary instance:

# Import essential libraries
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns

# Load the dataset
knowledge = pd.read_csv('your_dataset.csv')

# Show primary details about the dataset
print("Form of the dataset:", knowledge.form)
print("nColumns:", knowledge.columns)
print("nData varieties of columns:n", knowledge.dtypes)

# Show abstract statistics
print("nSummary statistics:n", knowledge.describe())

# Verify for lacking values
print("nMissing values:n", knowledge.isnull().sum())

# Visualize distribution of a numerical variable
plt.determine(figsize=(10, 6))
sns.histplot(knowledge['numerical_column'], kde=True)
plt.title('Distribution of Numerical Column')
plt.xlabel('Numerical Column')
plt.ylabel('Frequency')
plt.present()

# Visualize relationship between two numerical variables
plt.determine(figsize=(10, 6))
sns.scatterplot(x='numerical_column_1', y='numerical_column_2', knowledge=knowledge)
plt.title('Relationship between Numerical Column 1 and Numerical Column 2')
plt.xlabel('Numerical Column 1')
plt.ylabel('Numerical Column 2')
plt.present()

# Visualize relationship between a categorical and numerical variable
plt.determine(figsize=(10, 6))
sns.boxplot(x='categorical_column', y='numerical_column', knowledge=knowledge)
plt.title('Relationship between Categorical Column and Numerical Column')
plt.xlabel('Categorical Column')
plt.ylabel('Numerical Column')
plt.present()

# Visualize correlation matrix
plt.determine(figsize=(10, 6))
sns.heatmap(knowledge.corr(), annot=True, cmap='coolwarm', fmt=".2f")
plt.title('Correlation Matrix')
plt.present()

Why is Exploratory Information Evaluation Essential?

Exploratory Information Evaluation (EDA) is a vital step within the knowledge evaluation course of. It entails analyzing and visualizing knowledge to grasp its essential traits, uncover patterns, and determine relationships between variables. Python presents a number of libraries which can be generally used for EDA, together with pandas, NumPy, Matplotlib, Seaborn, and Plotly.

EDA is essential as a result of uncooked knowledge is normally skewed, might have outliers, or too many lacking values. A mannequin constructed on such knowledge ends in sub-optimal efficiency. Within the hurry to get to the machine studying stage, some knowledge professionals both solely skip the EDA course of or do a really mediocre job. It is a mistake with many implications, together with:

  • Producing Inaccurate Fashions: Fashions constructed on unexamined knowledge may be inaccurate and unreliable.
  • Utilizing Flawed Information: With out EDA, you is perhaps analyzing or modeling the mistaken knowledge, resulting in false conclusions.
  • Inefficient Useful resource Use: Inefficiently utilizing computational and human sources as a consequence of lack of correct knowledge understanding.
  • Improper Information Preparation: EDA helps in creating the appropriate varieties of variables, which is important for efficient knowledge preparation.

On this article, we’ll be utilizing Pandas, Seaborn, and Matplotlib libraries of Python to reveal varied EDA strategies utilized to Haberman’s Breast Most cancers Survival Dataset. This may present a sensible understanding of EDA and spotlight its significance within the knowledge evaluation workflow.

Additionally Learn: Step-by-Step Exploratory Information Evaluation (EDA) utilizing Python

Forms of EDA Methods

Earlier than diving into the dataset, let’s first perceive the several types of Exploratory Information Evaluation (EDA) strategies. Listed below are 5 key varieties of EDA strategies:

  • Univariate Evaluation: Univariate evaluation examines particular person variables to grasp their distributions and abstract statistics. This consists of calculating measures akin to imply, median, mode, and customary deviation, and visualizing the info utilizing histograms, bar charts, field plots, and violin plots.
  • Bivariate Evaluation: Bivariate evaluation explores the connection between two variables. It uncovers patterns by strategies like scatter plots, pair plots, and heatmaps. This helps to determine potential associations or dependencies between variables.
  • Multivariate Evaluation: Multivariate evaluation entails analyzing greater than two variables concurrently to grasp their relationships and mixed results. Methods akin to contour plots, and principal part evaluation (PCA) are generally utilized in multivariate EDA.
  • Visualization Methods: EDA depends closely on visualization strategies to depict knowledge distributions, traits, and associations. Varied charts and graphs, akin to bar charts, line charts, scatter plots, and heatmaps, are used to make knowledge simpler to grasp and interpret.
  • Outlier Detection: EDA entails figuring out outliers inside the knowledge—anomalies that deviate considerably from the remainder of the info. Instruments akin to field plots, z-score evaluation, and scatter plots assist in detecting and analyzing outliers.
  • Statistical Assessments: EDA typically consists of performing statistical assessments to validate hypotheses or discern vital variations between teams. Assessments akin to t-tests, chi-square assessments, and ANOVA add depth to the evaluation course of by offering a statistical foundation for the noticed patterns.

Through the use of these EDA strategies, we are able to achieve a complete understanding of the info, determine key patterns and relationships, and make sure the knowledge’s integrity earlier than continuing with extra complicated analyses.

Dataset Description

The dataset used is an open supply dataset and contains circumstances from the exploratory knowledge evaluation performed between 1958 and 1970 on the College of Chicago’s Billings Hospital, specializing in the survival of sufferers post-surgery for breast most cancers. The dataset may be downloaded from right here.
[Source: Tjen-Sien Lim ([email protected]), Date: March 4, 1999]

Attribute Data

  • Affected person’s age on the time of operation (numerical).
  • Yr of operation (12 months — 1900, numerical).
  • Quite a few constructive axillary nodes had been detected (numerical).
  • Survival standing (class attribute)
    • The affected person survived 5 years or longer post-operation.
    • The affected person died inside 5 years post-operation.

Attributes 1, 2, and three type our options (unbiased variables), whereas attribute 4 is our class label (dependent variable).

Let’s start our evaluation . . .

1. Importing Libraries and Loading Information

Import all essential packages:

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
import scipy.stats as stats

Load the dataset in pandas dataframe:

df = pd.read_csv('haberman.csv', header = 0)
df.columns = ['patient_age', 'operation_year', 'positive_axillary_nodes', 'survival_status']

2. Understanding Information

To grasp the dataset, we first must load it and examine its construction.

Output:

Form of the DataFrame:

To grasp the dimensions of the dataset, we test its form.

df.form

Output:
(305, 4)

Class Distribution:

Subsequent, let’s see what number of knowledge factors there are for every class label in our dataset. There are 305 rows and 4 columns. However what number of knowledge factors for every class label are current in our dataset?

df [‘survival_status’] .value_counts ()

Output:

20.1
  • The dataset is imbalanced as anticipated.
  • Out of a complete of 305 sufferers, the variety of sufferers who survived over 5 years post-operation is almost 3 instances the variety of sufferers who died inside 5 years.

Checking for Lacking Values:

Let’s test for any lacking values within the dataset.

print("Lacking values in every column:n", df.isnull().sum())

Output:

There are not any lacking values within the dataset.

Information Data:

Let’s get a abstract of the dataset to grasp the info varieties and additional confirm the absence of lacking values.

df.information()

Output:

  • All of the columns are of integer kind.
  • No lacking values within the dataset.

All columns are of integer kind.

By understanding the fundamental construction, distribution, and completeness of the info, we are able to proceed with extra detailed exploratory knowledge evaluation (EDA) and uncover deeper insights.

Information Preparation

Earlier than continuing with statistical evaluation and visualization, we have to modify the unique class labels. The present labels are 1 (survived 5 years or extra) and 2 (died inside 5 years), which aren’t very descriptive. We’ll map these to extra intuitive categorical variables: ‘sure’ for survival and ‘no’ for non-survival.

# Map survival standing values to categorical variables 'sure' and 'no'
df['survival_status'] = df['survival_status'].map({1: 'sure', 2: 'no'})

# Show the up to date DataFrame to confirm adjustments
print(df.head())

Normal Statistical Evaluation

We are going to now carry out a basic statistical evaluation to grasp the general distribution and central tendencies of the info.

# Show abstract statistics of the DataFrame
df .describe ()

Output:

Statistical analysis, EDA
  • On common, sufferers received operated at age of 63.
  • A mean variety of constructive axillary nodes detected = 4.
  • As indicated by the fiftieth percentile, the median of constructive axillary nodes is 1.
  • As indicated by the seventy fifth percentile, 75% of the sufferers have lower than 4 nodes detected.

Should you see, there’s a vital distinction between the imply and the median values. It is because there are some outliers in our knowledge and the imply is influenced by the presence of outliers.

Class-wise Statistical Evaluation

To realize deeper insights, we’ll carry out a statistical evaluation for every class (survived vs. not survived) individually.

Survived (Sure) Evaluation:

survival_yes = df[df['survival_status'] == 'sure']
print(survival_yes.describe())

Output:

Statistical analysis,exploratory data analysis

Not Survived (No) Evaluation:

survival_no = df[df['survival_status'] == 'no']
print(survival_no.describe())

Output:

patient age, operation, exploratory data analysis

From the above class-wise evaluation, it may be noticed that —

  • The common age at which the affected person is operated on is almost the identical in each circumstances.
  • Sufferers who died inside 5 years on common had about 4 to five constructive axillary nodes greater than the sufferers who lived over 5 years post-operation.

Be aware that, all these observations are solely based mostly on the info at hand.

3. Uni-variate Information Evaluation

“An image is value ten thousand phrases”

– Frank R. Bernard

Uni-variate evaluation entails finding out one variable at a time. One of these evaluation helps in understanding the distribution and traits of every variable individually. Under are alternative ways to carry out uni-variate evaluation together with their outputs and interpretations.

Distribution Plots

Distribution plots, also called likelihood density perform (PDF) plots, present how values in a dataset are unfold out. They assist us see the form of the info distribution and determine patterns.

Affected person’s Age

sns.FacetGrid(knowledge, hue="Survival_Status", top=5).map(sns.histplot, "Age", kde=True).add_legend()
plt.title('Distribution of Age')
plt.xlabel('Age')
plt.ylabel('Frequency')
plt.present()

Output:

Distribution plot, exploratory data analysis
  • Amongst all age teams, sufferers aged 40-60 years are the best.
  • There’s a excessive overlap between the category labels, implying that survival standing post-operation can’t be discerned from age alone.

Operation Yr

sns.FacetGrid(knowledge, hue="Survival_Status", top=5).map(sns.histplot, "Yr", kde=True).add_legend()
plt.title('Distribution of Operation Yr')
plt.xlabel('Operation Yr')
plt.ylabel('Frequency')
plt.present()

Output:

Operation year, EDA
  • Much like the age plot, there’s a vital overlap between the category labels, suggesting that operation 12 months alone isn’t a particular issue for survival standing.

Variety of Optimistic Axillary Nodes

sns.FacetGrid(knowledge, hue="Survival_Status", top=5).map(sns.histplot, "Nodes", kde=True).add_legend()
plt.title('Distribution of Optimistic Axillary Nodes')
plt.xlabel('Variety of Optimistic Axillary Nodes')
plt.ylabel('Frequency')
plt.present()

Output:

Positive axillary nods, Exploratory data analysis
  • Sufferers with 4 or fewer axillary nodes largely survived 5 years or longer.
  • Sufferers with greater than 4 axillary nodes have a decrease probability of survival in comparison with these with 4 or fewer nodes.

However our observations have to be backed by some quantitative measure. That’s the place the Cumulative Distribution perform(CDF) plots come into the image.

Cumulative Distribution Operate (CDF)

CDF plots present the likelihood {that a} variable will take a price lower than or equal to a selected worth. They supply a cumulative measure of the distribution.

counts, bin_edges = np.histogram(knowledge[data['Survival_Status'] == 1]['Nodes'], density=True)
pdf = counts / sum(counts)
cdf = np.cumsum(pdf)
plt.plot(bin_edges[1:], cdf, label="CDF Survival standing = Sure")

counts, bin_edges = np.histogram(knowledge[data['Survival_Status'] == 2]['Nodes'], density=True)
pdf = counts / sum(counts)
cdf = np.cumsum(pdf)
plt.plot(bin_edges[1:], cdf, label="CDF Survival standing = No")

plt.legend()
plt.xlabel("Optimistic Axillary Nodes")
plt.ylabel("CDF")
plt.title('Cumulative Distribution Operate for Optimistic Axillary Nodes')
plt.grid()
plt.present()

Output:

exploratory data analysis
  • Sufferers with 4 or fewer constructive axillary nodes have about an 85% likelihood of surviving 5 years or longer post-operation.
  • The probability decreases for sufferers with greater than 4 axillary nodes.

Field Plots

Field plots, also called box-and-whisker plots, summarize knowledge utilizing 5 key metrics: minimal, decrease quartile (twenty fifth percentile), median (fiftieth percentile), higher quartile (seventy fifth percentile), and most. Additionally they spotlight outliers.

plt.determine(figsize=(15, 4))
plt.subplot(1, 3, 1)
sns.boxplot(x='Survival_Status', y='Age', knowledge=knowledge)
plt.title('Field Plot of Age')
plt.subplot(1, 3, 2)
sns.boxplot(x='Survival_Status', y='Yr', knowledge=knowledge)
plt.title('Field Plot of Operation Yr')
plt.subplot(1, 3, 3)
sns.boxplot(x='Survival_Status', y='Nodes', knowledge=knowledge)
plt.title('Field Plot of Optimistic Axillary Nodes')
plt.present()

Output:

Box plots and violin plots, exploratory data analysis (EDA)
  • The affected person age and operation 12 months plots present related statistics.
  • The remoted factors within the constructive axillary nodes field plot are outliers, which is predicted in medical datasets.

Violin Plots

Violin plots mix the options of field plots and density plots. They supply a visible abstract of the info and present the distribution’s form, density, and variability.

plt.determine(figsize=(15, 4))
plt.subplot(1, 3, 1)
sns.violinplot(x='Survival_Status', y='Age', knowledge=knowledge)
plt.title('Violin Plot of Age')
plt.subplot(1, 3, 2)
sns.violinplot(x='Survival_Status', y='Yr', knowledge=knowledge)
plt.title('Violin Plot of Operation Yr')
plt.subplot(1, 3, 3)
sns.violinplot(x='Survival_Status', y='Nodes', knowledge=knowledge)
plt.title('Violin Plot of Optimistic Axillary Nodes')
plt.present()

Output:

EDA
  • The distribution of constructive axillary nodes is extremely skewed for the ‘sure’ class label and reasonably skewed for the ‘no’ label.
  • The vast majority of sufferers, no matter survival standing, have a decrease variety of constructive axillary nodes, with these having 4 or fewer nodes extra more likely to survive 5 years post-operation.

These observations align with our earlier analyses and supply a deeper understanding of the info.

Bar Charts

Bar charts show the frequency or depend of classes inside a single variable, making them helpful for evaluating completely different teams.

Survival Standing Rely

sns.countplot(x='Survival_Status', knowledge=df)
plt.title('Rely of Survival Standing')
plt.xlabel('Survival Standing')
plt.ylabel('Rely')
plt.present()

Output:

  • This bar chart exhibits the variety of sufferers who survived 5 years or longer versus those that didn’t. It helps visualize the category imbalance within the dataset.

Histograms

Histograms present the distribution of numerical knowledge by grouping knowledge factors into bins. They assist perceive the frequency distribution of a variable.

Age Distribution

df['Age'].plot(type='hist', bins=20, edgecolor="black")
plt.title('Histogram of Age')
plt.xlabel('Age')
plt.ylabel('Frequency')
plt.present()

Output:

  • The histogram shows how the ages of sufferers are distributed. Most sufferers are between 40 and 60 years outdated.

These observations align with our earlier analyses and supply a deeper understanding of the info.

4. Bi-variate Information Evaluation

Bi-variate knowledge evaluation entails finding out the connection between two variables at a time. This helps in understanding how one variable impacts one other and might reveal underlying patterns or correlations. Listed below are some widespread strategies for bi-variate evaluation.

Pair Plot

A pair plot visualizes the pairwise relationships between variables in a dataset. It shows each the distributions of particular person variables and their relationships.

sns.set_style('whitegrid')
sns.pairplot(knowledge, hue="Survival_Status")
plt.present()

Output:

BIVariate data analysis,EDA
  • The pair plot exhibits scatter plots of every pair of variables and histograms of every variable alongside the diagonal.
  • The scatter plots on the higher and decrease halves of the matrix are mirror pictures, so analyzing one half is adequate.
  • The histograms on the diagonal present the univariate distribution of every function.
  • There’s a excessive overlap between any two options, indicating no clear distinction between the survival standing class labels based mostly on function pairs.

Whereas the pair plot offers an summary of the relationships between all pairs of variables, generally it’s helpful to give attention to the connection between simply two particular variables in additional element. That is the place the joint plot is available in.

Joint Plot

A joint plot offers an in depth view of the connection between two variables together with their particular person distributions.

sns.jointplot(x='Age', y='Nodes', knowledge=knowledge, type='scatter')
plt.present()

Output:

joint plot
  • The scatter plot within the heart exhibits no correlation between the affected person’s age and the variety of constructive axillary nodes detected.
  • The histogram on the highest edge exhibits that sufferers usually tend to get operated on between the ages of 40 and 60 years.
  • The histogram on the appropriate edge signifies that almost all of sufferers had fewer than 4 constructive axillary nodes.

Whereas joint plots and pair plots assist visualize the relationships between pairs of variables, a heatmap can present a broader view of the correlations amongst all of the variables within the dataset concurrently.

Heatmap

A heatmap visualizes the correlation between completely different variables. It makes use of shade coding to signify the power of the correlations, which can assist determine relationships between variables.

sns.heatmap(knowledge.corr(), cmap='YlGnBu', annot=True)
plt.present()

Output:

Heatmap, exploratory data analysis
  • The heatmap shows Pearson’s R values, indicating the correlation between pairs of variables.
  • Correlation values near 0 recommend no linear relationship between the variables.
  • On this dataset, there are not any robust correlations between any pairs of variables, as most values are close to 0.

These bi-variate evaluation strategies present worthwhile insights into the relationships between completely different options within the dataset, serving to to grasp how they work together and affect one another. Understanding these relationships is essential for constructing extra correct fashions and making knowledgeable selections in knowledge evaluation and machine studying duties.

5. Multivariate Evaluation

Multivariate evaluation entails analyzing greater than two variables concurrently to grasp their relationships and mixed results. One of these evaluation is important for uncovering complicated interactions in knowledge. Let’s discover a number of multivariate evaluation strategies.

Contour Plot

A contour plot is a graphical method that represents a three-dimensional floor by plotting fixed z slices, known as contours, in a 2-dimensional format. This enables us to visualise complicated relationships between three variables in an simply interpretable 2-D chart.

contour Exploratory Data Analysis

For instance, let’s look at the connection between affected person’s age and operation 12 months, and the way these relate to the variety of sufferers.

sns.jointplot(x='Age', y='Yr', knowledge=knowledge, type='kde', fill=True)
plt.present()

Output:

  • From the above contour plot, it may be noticed that the years 1959–1964 witnessed extra sufferers within the age group of 45–55 years.
  • The contour strains signify the density of knowledge factors. Nearer contour strains point out a better density of knowledge factors.
  • The areas with the darkest shading signify the best density of sufferers, displaying the commonest combos of age and operation 12 months.

By using contour plots, we are able to successfully consolidate data from three dimensions right into a two-dimensional format, making it simpler to determine patterns and relationships within the knowledge. This method enhances our means to carry out complete multivariate evaluation and extract worthwhile insights from complicated datasets.

3D Scatter Plot

A 3D scatter plot is an extension of the normal scatter plot into three dimensions, which permits us to visualise the connection amongst three variables.

from mpl_toolkits.mplot3d import Axes3D

fig = plt.determine()
ax = fig.add_subplot(111, projection='3d')

ax.scatter(df['Age'], df['Year'], df['Nodes'])
ax.set_xlabel('Age')
ax.set_ylabel('Yr')
ax.set_zlabel('Nodes')

plt.present()

Output

  • Most sufferers are aged between 40 to 70 years, with their surgical procedures predominantly occurring between the years 1958 to 1966.
  • The vast majority of sufferers have fewer than 10 constructive axillary lymph nodes, indicating that low node counts are widespread on this dataset.
  • A number of sufferers have a considerably larger variety of constructive nodes (as much as round 50), suggesting circumstances of extra superior most cancers.
  • There isn’t a robust correlation between the affected person’s age or the 12 months of surgical procedure and the variety of constructive nodes detected. Optimistic nodes are unfold throughout varied ages and years with no clear pattern.

Conclusion

On this article, we discovered some widespread steps concerned in exploratory knowledge evaluation. We additionally noticed a number of varieties of charts & plots and what data is conveyed by every of those. That is simply not it, I encourage you to play with the info and give you completely different sorts of visualizations and observe what insights you’ll be able to extract from it.

Key Takeaways:

  • EDA is essential for understanding knowledge, figuring out points, and extracting insights earlier than modeling
  • Varied strategies like visualizations, statistical summaries, and knowledge cleansing are utilized in EDA
  • Python libraries like pandas, NumPy, Matplotlib, and Seaborn are generally used for EDA

The media proven on this article are usually not owned by Analytics Vidhya and are used on the Writer’s discretion.

Often Requested Questions

Q1. What is supposed by exploratory knowledge evaluation?

A. Exploratory knowledge evaluation (EDA) is the preliminary investigation of knowledge to summarize its essential traits, typically utilizing visible strategies.

Q2. What’s knowledge exploration evaluation?

A. Information exploration evaluation entails analyzing datasets to uncover patterns, anomalies, and relationships, offering insights for additional evaluation.

Q3. What’s EDA used for?

A. EDA is used to grasp knowledge distributions, determine outliers, uncover patterns, and inform the selection of statistical instruments and strategies.

This fall. What are the steps of EDA?

A. Steps of EDA embody: knowledge cleansing, summarizing statistics, visualizing knowledge, figuring out patterns, and producing hypotheses for additional evaluation.



Supply hyperlink

Related Articles

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Latest Articles