Skip to content

Commit

Permalink
Merge pull request #86 from UBC-MDS/m4_README
Browse files Browse the repository at this point in the history
M4 readme update
  • Loading branch information
cmmclaug authored Mar 19, 2021
2 parents a093017 + 4e8d068 commit 73b85c3
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ DRY out your regression analysis!

## Python Package for Inferential Regression and EDA Analysis!

As Data Scientists, being able to perform Exploratory Data Analysis as well as Regression Analysis are paramount to the process of analyzing trends in data. Moreover, following the DRY (Do Not Repeat Yourself) principle is regarded as a majority priority for maximizing code quality. Yet, often times Data Scientists facing these tasks will start the entire process from scratch, wasting both time and effort while compromising code quality. The aridanalysis package strives to remedy this problem by giving users an easy-to-implement EDA function alongside 3 robust statistical tests that will simplify these analytical processes and produce an easy to read interpretation of the input data. Users will no longer have to write many lines of code to explore their data effectively.
As Data Scientists, being able to perform Exploratory Data Analysis as well as Regression Analysis are paramount to the process of analyzing trends in data. Moreover, following the DRY (Do Not Repeat Yourself) principle is regarded as a majority priority for maximizing code quality. Yet, often times Data Scientists facing these tasks will start the entire process from scratch, wasting both time and effort while compromising code quality. The `aridanalysis` package strives to remedy this problem by giving users an easy-to-implement EDA function alongside 3 robust statistical tests that will simplify these analytical processes and produce an easy to read interpretation of the input data. Users will no longer have to write many lines of code to explore their data effectively.

## Package Functions

Expand Down Expand Up @@ -50,14 +50,24 @@ tdf = pd.DataFrame(
)
>>> aa.arid_linreg(tdf, y)

data = [
[32, "male", 80, 0],
[26, "female", 65, 1],
[22, "female", 75, 1],
[36, "male", 85, 0],
[45, "male", 82, 1],
[18, "female", 57, 0],
[57, "male", 60, 1],
]

df = pd.DataFrame(
{
"x1": [1, 0, 0],
"x2": [0, 1.0, 0],
"x3": [0, 0, 1],
"x4": ["a", "a", "b"],
"y": [1, 0, 0],
}
data,
columns=[
"x1",
"x2",
"x3",
"y"
]
)
>>> aa.arid_logreg(df, y)

Expand Down

0 comments on commit 73b85c3

Please sign in to comment.