diff --git a/docs/managing-python-projects.md b/docs/managing-python-projects.md index 9b4380a1..645b3a1a 100644 --- a/docs/managing-python-projects.md +++ b/docs/managing-python-projects.md @@ -317,71 +317,3 @@ You have a utility script that needs specific packages without affecting your ma - [Environment Management](../README.md#environment-management): Learn about creating and managing Python environments - [Package Management](../README.md#package-management): Learn how to install and manage packages - [Projects API Reference](projects-api-reference.md): Technical reference for extension authors - - - - -RawEventsVSCodeExt -| where EventName == "ms-python.vscode-python-envs/project_structure" -| extend ProjectCount = toint(Properties["totalprojectcount"]) -| extend Bucket = case( - ProjectCount == 0, "0", - ProjectCount == 1, "1", - ProjectCount == 2, "2", - ProjectCount == 3, "3", - ProjectCount >= 4, "4+", - "unknown") -| summarize Count = count() by Bucket -| order by Bucket asc - -0 4,231 -1 38,743 93.6% -2 1,163 2.8% -3 429 1% -4+ 1,051 2.5% - -1-4 == 41,386 - -RawEventsVSCodeExt -| where EventName == "ms-python.vscode-python-envs/project_structure" -| extend ProjectCount = toint(Properties["uniqueinterpretercount"]) -| extend Bucket = case( - ProjectCount == 0, "0", - ProjectCount == 1, "1", - ProjectCount == 2, "2", - ProjectCount == 3, "3", - ProjectCount >= 4, "4+", - "unknown") -| summarize Count = count() by Bucket -| order by Bucket asc - -0 4,934 10.9% -1 39,054 86.6% -2 820 1.8% -3 138 0.3% -4+ 160 0.35 - -0-4+ = 45,106 - - -RawEventsVSCodeExt -| where EventName == "ms-python.vscode-python-envs/project_structure" -| extend ProjectCount = toint(Properties["projectunderroot"]) -| extend Bucket = case( - ProjectCount == 0, "0", - ProjectCount == 1, "1", - ProjectCount == 2, "2", - ProjectCount == 3, "3", - ProjectCount >= 4, "4+", - "unknown") -| summarize Count = count() by Bucket -| order by Bucket asc - - -0 45,293 98.2% -1 445 1% -2 119 0.25% -3 29 -4+ 194 0.4% - -0-4+: 46,080 \ No newline at end of file