You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for dataframes into the DataExplorer (microsoft#4969)
For #4677
<!--
If an item below does not apply to you, then go ahead and check it off as "done" and strikethrough the text, e.g.:
- [x] ~Has unit tests & system/integration tests~
-->
- [x] Pull request represents a single change (i.e. not fixing disparate/unrelated things in a single PR)
- [x] Title summarizes what is changing
- [x] Has a [news entry](https://github.com/Microsoft/vscode-python/tree/master/news) file (remember to thank yourself!)
- [ ] Has sufficient logging.
- [ ] Has telemetry for enhancements.
- [ ] Unit tests & system/integration tests are added/updated
- [ ] [Test plan](https://github.com/Microsoft/vscode-python/blob/master/.github/test_plan.md) is updated as appropriate
- [ ] [`package-lock.json`](https://github.com/Microsoft/vscode-python/blob/master/package-lock.json) has been regenerated by running `npm install` (if dependencies have changed)
- [ ] The wiki is updated with any design decisions/details.
"LanguageService.reloadVSCodeIfSeachPathHasChanged": "Search paths have changed for this Python interpreter. Please reload the extension to ensure that the IntelliSense works correctly"
225
+
"LanguageService.reloadVSCodeIfSeachPathHasChanged": "Search paths have changed for this Python interpreter. Please reload the extension to ensure that the IntelliSense works correctly",
226
+
"DataScience.dataExplorerInvalidVariableFormat" : "'{0}' is not an active variable.",
227
+
"DataScience.jupyterGetVariablesExecutionError" : "Failure during variable extraction:\r\n{0}",
228
+
"DataScience.loadingMessage" : "loading ...",
229
+
"DataScience.noRowsInDataExplorer" : "Fetching data ...",
230
+
"DataScience.pandasTooOldForViewingFormat" : "Python package 'pandas' is version {0}. Version 0.20 or greater is required for viewing data.",
231
+
"DataScience.pandasRequiredForViewing" : "Python package 'pandas' is required for viewing data."
exportconstliveShareServiceFailure=localize('DataScience.liveShareServiceFailure','Failure starting \'{0}\' service during live share connection.');
144
144
exportconstdocumentMismatch=localize('DataScience.documentMismatch','Cannot run cells, duplicate documents for {0} found.');
145
145
exportconstjupyterGetVariablesBadResults=localize('DataScience.jupyterGetVariablesBadResults','Failed to fetch variable info from the Jupyter server.');
146
+
exportconstdataExplorerInvalidVariableFormat=localize('DataScience.dataExplorerInvalidVariableFormat','\'{0}\' is not an active variable.');
146
147
exportconstpythonInteractiveCreateFailed=localize('DataScience.pythonInteractiveCreateFailed','Failure to create a \'Python Interactive\' window. Try reinstalling the Python extension.');
147
-
148
+
exportconstjupyterGetVariablesExecutionError=localize('DataScience.jupyterGetVariablesExecutionError','Failure during variable extraction: \r\n{0}');
exportconstnoRowsInDataExplorer=localize('DataScience.noRowsInDataExplorer','Fetching data ...');
151
+
exportconstpandasTooOldForViewingFormat=localize('DataScience.pandasTooOldForViewingFormat','Python package \'pandas\' is version {0}. Version 0.20 or greater is required for viewing data.');
152
+
exportconstpandasRequiredForViewing=localize('DataScience.pandasRequiredForViewing','Python package \'pandas\' is required for viewing data.');
0 commit comments