Skip to content

Commit b1b1052

Browse files
committed
Fixing links
1 parent 1d650e2 commit b1b1052

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/machine-learning/deploy/modify-r-python-code-to-run-in-sql-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ How much you change your code depends on whether you intend to submit the code f
142142
+ If you have complex R code, use the R package **sqlrutils** to convert your code. This package is designed to help experienced R users write good stored procedure code.
143143
You rewrite your R code as a single function with clearly defined inputs and outputs, then use the **sqlrutils** package to generate the input and outputs in the correct format. The **sqlrutils** package generates the complete stored procedure code for you, and can also register the stored procedure in the database.
144144

145-
For more information and examples, see [sqlrutils (SQL)](ref-r-sqlrutils.md).
145+
For more information and examples, see [sqlrutils (SQL)](../r/ref-r-sqlrutils.md).
146146

147147
### Integrate with other workflows
148148

docs/machine-learning/deploy/operationalizing-your-r-code.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ A more comprehensive example of deploying R code into production by using stored
2929

3030
Converting your R code in SQL is easier if some optimizations are done beforehand in the R or Python code. These include avoiding data types that cause problems, avoiding unnecessary data conversions, and rewriting the R code as a single function call that can be easily parameterized. For more information, see:
3131

32-
+ [R libraries and data types](r-libraries-and-data-types.md)
33-
+ [Use sqlrutils helper functions](ref-r-sqlrutils.md)
32+
+ [R libraries and data types](../r/r-libraries-and-data-types.md)
33+
+ [Use sqlrutils helper functions](../r/ref-r-sqlrutils.md)
3434

3535
## Integrate R and Python with applications
3636

@@ -54,7 +54,7 @@ The following tutorial provides an example of scoring using a stored procedure i
5454

5555
## Boost performance and scale
5656

57-
Although the open-source R language has known limitations with regards to large data sets, the [RevoScaleR package APIs](ref-r-revoscaler.md) included with SQL Server Machine Learning Service can operate on large datasets and benefit from multi-threaded, multi-core, multi-process in-database computations.
57+
Although the open-source R language has known limitations with regards to large data sets, the [RevoScaleR package APIs](../r/ref-r-revoscaler.md) included with SQL Server Machine Learning Service can operate on large datasets and benefit from multi-threaded, multi-core, multi-process in-database computations.
5858

5959
If your R solution uses complex aggregations or involves large datasets, you can leverage SQL Server's highly efficient in-memory aggregations and columnstore indexes, and let the R code handle the statistical computations and scoring.
6060

0 commit comments

Comments
 (0)