Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit ef8bbda

Browse files
committed
TOC entries for old docs, plus some acrolinx edits
1 parent b0c3241 commit ef8bbda

3 files changed

Lines changed: 6 additions & 29 deletions

File tree

docs/advanced-analytics/r/r-libraries-and-data-types.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ manager: cgronlun
1212
# R libraries and R data types
1313
[!INCLUDE[appliesto-ss-xxxx-xxxx-xxx-md-winonly](../../includes/appliesto-ss-xxxx-xxxx-xxx-md-winonly.md)]
1414

15-
This topic describes the R libraries that are included and the data types that are supported in the following products:
15+
This article describes the R libraries that are included and the data types that are supported in the following products:
1616

1717
+ SQL Server 2016 R Services (In-Database)
1818
+ SQL Server Machine Learning Services (In-Database)
1919

20-
This topic also lists unsupported data types, and lists the data type conversions that might be performed implicitly when data is passed between R and SQL Server.
20+
This article also lists unsupported data types, and lists the data type conversions that might be performed implicitly when data is passed between R and SQL Server.
2121

2222
## R Libraries
2323

@@ -70,7 +70,7 @@ The following table shows the changes in data types and values when data from [!
7070

7171
Of the categories of data types supported by the [SQL Server type system](../../t-sql/data-types/data-types-transact-sql.md), the following types are likely to pose problems when passed to R code:
7272

73-
+ Data types listed in the **Other** section of the SQL type system topic: **cursor**, **timestamp**, **hierarchyid**, **uniqueidentifier**, **sql_variant**, **xml**, **table**
73+
+ Data types listed in the **Other** section of the SQL type system article: **cursor**, **timestamp**, **hierarchyid**, **uniqueidentifier**, **sql_variant**, **xml**, **table**
7474
+ All spatial types
7575
+ **image**
7676

@@ -97,7 +97,7 @@ For more information, see [SQL Server 2016 improvements in handling some data ty
9797

9898
In general, whenever you have any doubt about how a particular data type or data structure is being used in R, use the `str()` function to get the internal structure and type of the R object. The result of the function is printed to the R console and is also available in the query results, in the **Messages** tab in [!INCLUDE[ssManStudio](../../includes/ssmanstudio-md.md)].
9999

100-
When retrieving data from a database for use in R code, you should always eliminate columns that cannot be used in R, as well as columns that are not useful for analysis, such as GUIDS (uniqueidentifier), timestamps and other columns used for auditing, or lineage informatioh created by ETL processes.
100+
When retrieving data from a database for use in R code, you should always eliminate columns that cannot be used in R, as well as columns that are not useful for analysis, such as GUIDS (uniqueidentifier), timestamps and other columns used for auditing, or lineage information created by ETL processes.
101101

102102
Note that inclusion of unnecessary columns can greatly reduce the performance of R code, especially if high cardinality columns are used as factors. Therefore, we recommend that you use SQL Server system stored procedures and information views to get the data types for a given table in advance, and eliminate or convert incompatible columns. For more information, see [Information Schema Views in Transact-SQL](../../relational-databases/system-information-schema-views/system-information-schema-views-transact-sql.md)
103103

docs/advanced-analytics/toc.yml

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -155,29 +155,6 @@
155155
href: concepts/extension-r.md
156156
- name: Python extension
157157
href: concepts/extension-py.md
158-
- name: Concepts (old)
159-
href: architecture-overview-machine-learning.md
160-
items:
161-
- name: R
162-
href: r/architecture-overview-sql-server-r.md
163-
items:
164-
- name: R interoperability
165-
href: r/r-interoperability-in-sql-server.md
166-
- name: Components that support R integration
167-
href: r/new-components-in-sql-server-to-support-r.md
168-
- name: Security for R
169-
href: r/security-overview-sql-server-r.md
170-
- name: Python
171-
href: python/architecture-overview-sql-server-python.md
172-
items:
173-
- name: Python in Machine Learning Services
174-
href: python/sql-server-python-services.md
175-
- name: Python interoperability
176-
href: python/python-interoperability.md
177-
- name: Components to support Python
178-
href: python/new-components-in-sql-server-to-support-python-integration.md
179-
- name: Python security
180-
href: python/security-overview-sql-server-python-services.md
181158
- name: How To
182159
href: r/sql-server-machine-learning-tasks.md
183160
items:

docs/advanced-analytics/what-is-sql-server-machine-learning.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ SQL Server 2017 supports R and Python. The following table describes the compone
2626
| Component | Description |
2727
|-----------|-------------|
2828
| SQL Server Launchpad service | A service that manages communications between the external R and Python runtimes and the database engine instance. |
29-
| R packages | [**RevoScaleR**](r/revoscaler-overview.md) is the primary library for scaleable R. Functions in this library are among the most widely used. Data transformations and manipulation, statistical summarization, visualization, and many forms of modeling and analyses are found in these libraries. Additionally, functions in these libraries automatically distribute workloads across available cores for parallel processing, with the ability to work on chunks of data that are coordinated and managed by the calculation engine. <br/>[**MicrosoftML (R)**](https://docs.microsoft.com/machine-learning-server/r-reference/microsoftml/microsoftml-package) adds machine learning algorithms to create custom models for text analysis, image analysis, and sentiment analysis. <br/>[**sqlRUtils**](r/generating-an-r-stored-procedure-for-r-code-using-the-sqlrutils-package.md) provides helper functions for putting R scripts into a T-SQL stored procedure, registering a stored procedure with a database, and running the stored procedure from an R development environment.<br/>[**olapR**](r/how-to-create-mdx-queries-using-olapr.md) is for building or executing an MDX query in R script.|
29+
| R packages | [**RevoScaleR**](r/revoscaler-overview.md) is the primary library for scalable R. Functions in this library are among the most widely used. Data transformations and manipulation, statistical summarization, visualization, and many forms of modeling and analyses are found in these libraries. Additionally, functions in these libraries automatically distribute workloads across available cores for parallel processing, with the ability to work on chunks of data that are coordinated and managed by the calculation engine. <br/>[**MicrosoftML (R)**](https://docs.microsoft.com/machine-learning-server/r-reference/microsoftml/microsoftml-package) adds machine learning algorithms to create custom models for text analysis, image analysis, and sentiment analysis. <br/>[**sqlRUtils**](r/generating-an-r-stored-procedure-for-r-code-using-the-sqlrutils-package.md) provides helper functions for putting R scripts into a T-SQL stored procedure, registering a stored procedure with a database, and running the stored procedure from an R development environment.<br/>[**olapR**](r/how-to-create-mdx-queries-using-olapr.md) is for building or executing an MDX query in R script.|
3030
| Microsoft R Open (MRO) | [**MRO**](https://mran.microsoft.com/open) is Microsoft's open-source distribution of R. The package and interpreter are included. Always use the version of MRO installed by Setup. |
3131
| R tools | R console windows and command prompts are standard tools in an R distribution. |
3232
| R Samples and scripts | Open-source R and RevoScaleR packages include built-in data sets so that you can create and run script using pre-installed data. |
33-
| Python packages | [**revoscalepy**](python/what-is-revoscalepy.md) is the primary library for scaleable Python with functions for data manipulation, transformation, visualization, and analysis. <br/>[**microsoftml (Python)**](https://docs.microsoft.com/machine-learning-server/python-reference/microsoftml/microsoftml-package) adds machine learning algorithms to create custom models for text analysis, image analysis, and sentiment analysis. |
33+
| Python packages | [**revoscalepy**](python/what-is-revoscalepy.md) is the primary library for scalable Python with functions for data manipulation, transformation, visualization, and analysis. <br/>[**microsoftml (Python)**](https://docs.microsoft.com/machine-learning-server/python-reference/microsoftml/microsoftml-package) adds machine learning algorithms to create custom models for text analysis, image analysis, and sentiment analysis. |
3434
| Python tools | The built-in Python command line tool is useful for ad hoc testing and tasks. |
3535
| Anaconda | Anaconda is an open-source distribution of Python and essential packages. |
3636
| Python samples and scripts | As with R, Python includes built-in data sets and scripts. |

0 commit comments

Comments
 (0)