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
* Support custom gather spec locations
* Adjust gather->script generation
* Interactive Window Gather
* Created GatherToScript command and made the
interactive window always use that when gathering.
* Don't show gather if cell is error
* No gathering markdown
* Add a new folder to Gather spec path
Copy file name to clipboardExpand all lines: package.json
+6-62Lines changed: 6 additions & 62 deletions
Original file line number
Diff line number
Diff line change
@@ -1655,68 +1655,6 @@
1655
1655
"markdownDescription": "Defines the location and order of the sources where scripts files for Widgets are downloaded from (e.g. ipywidgest, bqplot, beakerx, ipyleaflet, etc). Not selecting any of these could result in widgets not rendering or function correctly. See [here](https://aka.ms/PVSCIPyWidgets) for more information. Once updated you will need to restart the Kernel.",
1656
1656
"scope": "machine"
1657
1657
},
1658
-
"python.dataScience.gatherRules": {
1659
-
"type": "array",
1660
-
"default": [
1661
-
{
1662
-
"objectName": "df",
1663
-
"functionName": "head",
1664
-
"doesNotModify": [
1665
-
"OBJECT"
1666
-
]
1667
-
},
1668
-
{
1669
-
"objectName": "df",
1670
-
"functionName": "describe",
1671
-
"doesNotModify": [
1672
-
"OBJECT"
1673
-
]
1674
-
},
1675
-
{
1676
-
"objectName": "df",
1677
-
"functionName": "tail",
1678
-
"doesNotModify": [
1679
-
"OBJECT"
1680
-
]
1681
-
},
1682
-
{
1683
-
"functionName": "print",
1684
-
"doesNotModify": [
1685
-
"ARGUMENTS"
1686
-
]
1687
-
},
1688
-
{
1689
-
"functionName": "KMeans",
1690
-
"doesNotModify": [
1691
-
"ARGUMENTS"
1692
-
]
1693
-
},
1694
-
{
1695
-
"functionName": "scatter",
1696
-
"doesNotModify": [
1697
-
"ARGUMENTS"
1698
-
]
1699
-
},
1700
-
{
1701
-
"functionName": "fit",
1702
-
"doesNotModify": [
1703
-
"ARGUMENTS"
1704
-
]
1705
-
},
1706
-
{
1707
-
"functionName": "sum",
1708
-
"doesNotModify": [
1709
-
"ARGUMENTS"
1710
-
]
1711
-
},
1712
-
{
1713
-
"functionName": "len",
1714
-
"doesNotModify": [
1715
-
"ARGUMENTS"
1716
-
]
1717
-
}
1718
-
]
1719
-
},
1720
1658
"python.dataScience.askForLargeDataFrames": {
1721
1659
"type": "boolean",
1722
1660
"default": true,
@@ -1941,6 +1879,12 @@
1941
1879
"description": "Python Insiders Only: If experimental gather feature is enabled, gather code to a python script rather than a notebook.",
1942
1880
"scope": "resource"
1943
1881
},
1882
+
"python.dataScience.gatherSpecPath": {
1883
+
"type": "string",
1884
+
"default": "",
1885
+
"description": "Python Insiders Only: If experimental gather feature is enabled, this setting specifies a folder that contains additional or replacement spec files used for analysis.",
0 commit comments