33## Overview
44
55` ydata-profiling ` is a powerful library designed to generate profile reports from pandas and Spark Dataframe objects.
6- As part of our ongoing efforts to improve user experience and functionality, ` ydata-profiling ` includes a telemetry feature.
7- This feature collects anonymous usage data, helping us understand how the library is used and identify areas for improvement.
6+ As part of our ongoing efforts to improve user experience and functionality, ` ydata-profiling `
7+ includes a telemetry feature. This feature collects anonymous usage data, helping us understand how the
8+ library is used and identify areas for improvement.
89
910The primary goal of collecting telemetry data is to:
1011
@@ -13,6 +14,7 @@ The primary goal of collecting telemetry data is to:
1314- Identify common issues and bugs to improve overall user experience
1415
1516### Data Collected
17+
1618The telemetry system collects non-personal, anonymous information such as:
1719
1820- Python version
@@ -23,14 +25,18 @@ The telemetry system collects non-personal, anonymous information such as:
2325## Disabling usage analytics
2426
2527We respect your choice to not participate in our telemetry collection. If you prefer to disable telemetry, you can do so
26- by setting an environment variable on your system. Disabling telemetry will not affect the functionality of the ydata-profiling library,
27- except for the ability to contribute to its usage analytics.
28+ by setting an environment variable on your system. Disabling telemetry will not affect the functionality
29+ of the ydata-profiling library, except for the ability to contribute to its usage analytics.
30+
2831
29- ### Set an Environment Variable:
30- Open your terminal or command prompt and set the YDATA_PROFILING_ANALYTICS environment variable to false.
32+ ### Set an Environment Variable
3133
32- ### Configure it per ProfileReport
33- Add here the
34+ Open your terminal or command prompt and set the YDATA_PROFILING_NO_ANALYTICS environment variable to false.
3435
36+ ```` python
37+ import os
38+
39+ os.environ[' YDATA_PROFILING_NO_ANALYTICS' ] = ' True'
40+ ````
3541
3642
0 commit comments