Skip to content

Commit

Permalink
2.0.3 Release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
fbdesignpro committed Dec 10, 2020
1 parent 67b6340 commit 1122474
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog

#### 2.0.2 - 2020-10-18
#### 2.0.3 - 2020-12-10

- **Fixed:** problem with overlap in some categorical values in vertical layout when scaling is applied
- **Fixed:** default layout value ignored in show_notebooks()
- **Fixed:** unclickable buttons in some circumstances

#### 2.0.2 - 2020-11-30

- **Fixed:** issue with width "%" in default value INI

Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
![v](https://img.shields.io/badge/version-2.0.2-blue) ![v](https://img.shields.io/badge/updated-30%20Nov%202020-green)
![v](https://img.shields.io/badge/version-2.0.3-blue) ![v](https://img.shields.io/badge/updated-December%2010th,%20%202020-green)

![Sweetviz Logo](http://cooltiming.com/SV/logo.png)

_In-depth EDA **(target analysis, comparison, feature analysis, correlation)** in two lines of code!_

![Features](http://cooltiming.com/SV/features.png)

Sweetviz is an open source Python library that generates beautiful, high-density visualizations to kickstart EDA (Exploratory Data Analysis) with just two lines of code. Output is a fully self-contained HTML application.
Expand All @@ -11,7 +12,7 @@ The system is built around quickly **visualizing target values** and **comparing

Usage and parameters are described below, [you can also find an article describing its features in depth and see examples in action HERE](https://towardsdatascience.com/powerful-eda-exploratory-data-analysis-in-just-two-lines-of-code-using-sweetviz-6c943d32f34).

**Sweetviz development is still ongoing!** Please let me know if you run into any data, compatibility or install issues! Thank you for [reporting any BUGS in the issue tracking system here](https://github.com/fbdesignpro/sweetviz/issues), and I welcome your feedback and questions on usage/features [in our forum (you should be able to log in with your Github account!)](https://sweetviz.fbdesignpro.com).
**Sweetviz development is still ongoing!** Please let me know if you run into any data, compatibility or install issues! Thank you for [reporting any BUGS in the issue tracking system here](https://github.com/fbdesignpro/sweetviz/issues), and I welcome your feedback and questions on usage/features [in the brand-new GitHub "Discussions" tab right here!](https://github.com/fbdesignpro/sweetviz/discussions).

## Examples
[**Example report** using the Titanic dataset](http://cooltiming.com/SWEETVIZ_REPORT.html)
Expand Down Expand Up @@ -54,7 +55,7 @@ In those cases, we suggest the following:
# Basic Usage
Creating a report is a quick 2-line process:
1. Create a `DataframeReport` object using one of: `analyze()`, `compare()` or `compare_intra()`
2. Use a `show_xxx()` function to render the report. You can now use either **html** or **notebook** report options, as well as scaling: ([more info on these options below](#-step-2-show-the-report))
2. Use a `show_xxx()` function to render the report. You can now use either **html** or **notebook** report options, as well as scaling: (more info on these options below)

![Report_Show_Options](http://cooltiming.com/SV/Layout-Anim3.gif)

Expand Down
2 changes: 1 addition & 1 deletion sweetviz/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# sweetviz public interface
# -----------------------------------------------------------------------------------
__title__ = 'sweetviz'
__version__ = "2.0.2"
__version__ = "2.0.3"
__author__ = "Francois Bertrand"
__license__ = 'MIT'

Expand Down

0 comments on commit 1122474

Please sign in to comment.