Skip to content

Commit 49f697c

Browse files
author
Paweena Tongbai (Lionbridge Technologies Inc)
committed
Fix broken links
1 parent dceca96 commit 49f697c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/big-data-cluster/use-prose-for-big-data-automation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ In the current release, the Code Accelerator can intelligently generate Python c
3737
- Fixing data types in a dataframe.
3838
- Finding regular expressions representing patterns in a list of strings.
3939

40-
To get a general overview of Code Accelerator methods, see the [documentation](/python/api/overview/azure/prose/intro).
40+
To get a general overview of Code Accelerator methods, see the [documentation](https://github.com/MicrosoftDocs/prose-py-api-docs/blob/main/prosepy/docs-ref-conceptual/intro.md).
4141

4242
## Reading data from a file to a dataframe
4343

@@ -88,7 +88,7 @@ def read_file(file):
8888
return df
8989
```
9090

91-
Code Accelerator can generate code to load delimited, JSON, and fixed-width files to a dataframe. For reading fixed-width files, the `ReadFwfBuilder` optionally takes a human-readable schema file that it can parse to get the column positions. To learn more, see the [documentation](/python/api/overview/azure/prose/intro).
91+
Code Accelerator can generate code to load delimited, JSON, and fixed-width files to a dataframe. For reading fixed-width files, the `ReadFwfBuilder` optionally takes a human-readable schema file that it can parse to get the column positions. To learn more, see the [documentation](https://github.com/MicrosoftDocs/prose-py-api-docs/blob/main/prosepy/docs-ref-conceptual/intro.md).
9292

9393
## Fixing data types in a dataframe
9494

@@ -108,7 +108,7 @@ builder = cx.DetectTypesBuilder(df)
108108
builder.learn().code()
109109
```
110110

111-
To learn more, see the [documentation](/python/api/overview/azure/prose/fixdatatypes).
111+
To learn more, see the [documentation](https://github.com/MicrosoftDocs/prose-py-api-docs/blob/main/prosepy/docs-ref-conceptual/fixdatatypes.md).
112112

113113
## Identifying patterns in Strings
114114

@@ -145,4 +145,4 @@ Here are the regular expressions generated by the `FindPatternsBuilder` for the
145145
^Unknown$
146146
```
147147

148-
Apart from generating Regular Expressions, `FindPatternsBuilder` can also generate code for clustering the values based on generated regexes. It can also assert that all the values in a column conform to the generated regular expressions. To learn more and see other useful scenarios, see the [documentation](/python/api/overview/azure/prose/findpatterns).
148+
Apart from generating Regular Expressions, `FindPatternsBuilder` can also generate code for clustering the values based on generated regexes. It can also assert that all the values in a column conform to the generated regular expressions. To learn more and see other useful scenarios, see the [documentation](https://github.com/MicrosoftDocs/prose-py-api-docs/blob/main/prosepy/docs-ref-conceptual/findpatterns.md).

0 commit comments

Comments
 (0)