# 6.33.0

October 12, 2023

## **What's new** 💡

* Enhanced sorting functionality in both the project and archived tables for a more intuitive experience.
* Enhanced the empty state in label set preview with a more intuitive design.
* Enhanced the box component in every page with a more intuitive design.
* Now Predict Labels will not replace existing user answers and we now facilitate Undo/Redo action for Predicted Labels
* Refined the "Mark as Complete" copy for clearer understanding.
* You can now view the [IAA](https://github.com/vulcan-ai/gitbook/blob/datasaur/compatibility-and-updates/workspace-management/analytics/inter-annotator-agreement/README.md) calculation from two algorithms: [Krippendorff’s Alpha](https://github.com/vulcan-ai/gitbook/blob/datasaur/compatibility-and-updates/workspace-management/analytics/inter-annotator-agreement/krippendorffs-alpha-calculation.md) and [Cohen’s Kappa](https://github.com/vulcan-ai/gitbook/blob/datasaur/compatibility-and-updates/workspace-management/analytics/inter-annotator-agreement/cohens-kappa-calculation.md).

## **Bug fixes** 🐞

* Fix inconsistent Provider Setting in Datasaur Dinamic
* Fixed an issue when unselect answer and consensus answer in reviewer mode.
* Fixed an issue when changing the slider question type's value via the slider thumb.
* Fixed an issue when creating a duplicate label set in Project Creation Wizard.

**API changes** 💡

Analytics

* Deprecate <mark style="color:red;">`getPaginatedChartData`</mark>, we will remove the support for paginated data charts in the future.
* Deprecate <mark style="color:red;">`getLabelAccuracyChart`</mark>, now <mark style="color:red;">`getCharts`</mark> includes Label Accuracy chart.
* Deprecate <mark style="color:red;">`getLabelAccuracyData`</mark>, now we can use <mark style="color:red;">`getChartData`</mark> with chartId=ACCURACY\_PER\_LABEL to get Label Accuracy chart data.
* Deprecate <mark style="color:red;">`exportLabelAccuracyChart`</mark>, now we can use <mark style="color:red;">`exportChart`</mark> with id=ACCURACY\_PER\_LABEL to export Label Accuracy chart data.
* <mark style="color:red;">`BREAKING ChartSet`</mark>, now Chart type contains <mark style="color:red;">`Array of ChartSet`</mark>
  * <mark style="color:red;">`ChartSet.BOTH`</mark> is removed.
  * <mark style="color:red;">`ChartSet.ELASTIC`</mark> is introduced.
  * If a Chart included in two set, for example **NEW** and **ELASTIC**, the <mark style="color:red;">`Chart.set`</mark> property will be <mark style="color:red;">`[NEW, ELASTIC]`</mark>.

Inter-Annotator Agreement (IAA)

* Deprecate calculateAgreementTables. Calculate agreement tables is a step in IAA calculation methods. It should be one with calculate IAA.
  * How to adjust: Please use calculateIAA instead.
* Deprecate calculatePairKappas. Pair kappa is a specific term to one of the IAA calculation methods. Now, Datasaur has two IAA methods.
  * How to adjust: Please use calculateIAA instead.
* Deprecate getIAALastUpdatedAt. It is IAA’s last updated time. So, it cannot be separated with IAA information.
  * How to adjust: Please use getIAAInformation instead.
* Deprecate getPairKappas. Pair kappa is a specific term to one of the IAA calculation methods. Now, Datasaur has two IAA methods.
  * How to adjust: Please use getIAAInformation instead.
* Add calculateIAA. It is added to calculate the IAA using all of the available calculation methods.
* Add getIAAInformation. It is added to improve the IAA information retrieval from multiple calculation methods.
