8000 Merge pull request #84 from gvelasq/patch-1 · sassoftware/sas_kernel@1b5e921 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1b5e921

Browse files
authored
Merge pull request #84 from gvelasq/patch-1
Fix typos
2 parents 7919abb + c79b648 commit 1b5e921

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

Readme.md

Lines changed: 10 additions & 10 deletions
BDBE
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ Here is the link to the current documentation <https://sassoftware.github.io/sas
1818

1919
- Python3 (this is now the default since Python2 went end of life in January 2020)
2020
- Jupyter version 4 or higher
21-
- SAS 9.4 or higher -- This includes [SAS Viya](http://www.sas.com/en_us/software/viya.html). The SAS kernel is compatable with any version of SAS released since July 2013.
22-
- SASPy -- The SAS kernel has as dependency on [SASPy](https://github.com/sassoftware/saspy). The package will be installed automatically but it must be configured to access your availble SAS server. **SASPy must be [configured](https://sassoftware.github.io/saspy/install.html#configuration) before the SAS kernel can work successfully**.
21+
- SAS 9.4 or higher -- This includes [SAS Viya](http://www.sas.com/en_us/software/viya.html). The SAS kernel is compatible with any version of SAS released since July 2013.
22+
- SASPy -- The SAS kernel has a dependency on [SASPy](https://github.com/sassoftware/saspy). The package will be installed automatically but it must be configured to access your available SAS server. **SASPy must be [configured](https://sassoftware.github.io/saspy/install.html#configuration) before the SAS kernel can work successfully**.
2323

2424
## Installation
2525

@@ -65,7 +65,7 @@ Available kernels:
6565
sas /home/sas/.local/share/jupyter/kernels/sas
6666
```
6767

68-
**NOTE:** You will not be able to execute SAS code through Juypter until you have [configured SASPy](https://sassoftware.github.io/saspy/install.html#configuration).
68+
**NOTE:** You will not be able to execute SAS code through Jupyter until you have [configured SASPy](https://sassoftware.github.io/saspy/install.html#configuration).
6969

7070
## Getting Started
7171

@@ -75,7 +75,7 @@ Here is a basic example of programming with SAS and Jupyter Notebook: [Getting S
7575

7676
#### For the Jupyter Lab extensions
7777

78-
There is a seperate reposity where the extensions are developed and maintained. See [that repo](https://github.com/jld23/sas_kernel_ext) for details
78+
There is a seperate repository where the extensions are developed and maintained. See [that repo](https://github.com/jld23/sas_kernel_ext) for details
7979

8080
#### For the Legacy Jupyter Notebook
8181

@@ -88,11 +88,11 @@ There are a few NBExtensions that have been created to make working with Jupyter
8888

8989
#### Installing the SAS Extensions
9090

91-
Details for installing the extensions for SAS can be found [here](./sas_kernel/nbextensions/README.md)
91+
Details for installing the extensions for SAS can be found [here](./sas_kernel/nbextensions/README.md).
9292

9393
#### Jupyter Magics for the sas_kernel
9494

95-
There are magics that have been written specifically for the sas_kernel to get more details see the [README](./sas_kernel/magics/README.md)
95+
There are magics that have been written specifically for the sas_kernel to get more details see the [README](./sas_kernel/magics/README.md).
9696

9797
### NBGrader
9898

@@ -108,15 +108,15 @@ There are magics that have been written specifically for the sas_kernel to get m
108108

109109
- Do I need to buy SAS to use this kernel?
110110

111-
The SAS Kernel is simply a gateway for Jupyter notebooks to talk to SAS, as such, if SAS is not installed this kernel won't be helpful. For information on purchasing SAS [click here](http://www.sas.com/en_us/software/how-to-buy.html)
111+
The SAS Kernel is simply a gateway for Jupyter notebooks to talk to SAS, as such, if SAS is not installed this kernel won't be helpful. For information on purchasing SAS [click here](http://www.sas.com/en_us/software/how-to-buy.html).
112112

113113
- How does Jupyter communicate with SAS?
114114

115115
Behind a Jupyter notebook is a python session, that python session submits code to SAS and receives responses through various pathways (depending on the SASPy configuration). Jupyter can communicate with any SAS host (Windows, Linux, Unix, MVS) that has been released since July 2013 to present.
116116

117117
- How can I see my SAS log, I only see the listing output?
118118

119-
SAS is different from many other programming languages in that it has two useful information streams, the log (which details the technical details of what happened and how long it took) and the lst (which includes the tables and graphics from the analysis). The SAS Kernel attempts to show you I _think_ you want. Here are the rules:
119+
SAS is different from many other programming languages in that it has two useful information streams, the log (which details the technical details of what happened and how long it took) and the lst (which includes the tables and graphics from the analysis). The SAS Kernel attempts to show you what I _think_ you want. Here are the rules:
120120

121121
| LOG | LST | DISPLAYED | NOTES |
122122
| --------------------------- | --- | ----------------------------------------------------------------- | ----------------------------------------------------------------------- |
@@ -125,11 +125,11 @@ There are magics that have been written specifically for the sas_kernel to get m
125125
| Yes (with ERROR message(s)) | Yes | ERROR messages with context from the log, then the listing output | --- |
126126
| Yes (with ERROR message(s)) | No | LOG | --- |
127127

128-
If you want to see the log but it was not displayed you can use [SASLog NBExtension](./sas_kernel/nbextensions/README.md) which will show the log for the last executed cell or the entire log since the last (re)start of the notebook
128+
If you want to see the log but it was not displayed you can use [SASLog NBExtension](./sas_kernel/nbextensions/README.md) which will show the log for the last executed cell or the entire log since the last (re)start of the notebook.
129129

130130
- Will this leave a bunch of SAS sessions hanging around?
131131

132-
A SAS session is started for each notebook you have open i.e. 5 notebooks open = 5 SAS sessions. Those sessions will remain active for the life of the notebook. If you shutdown your notebook, the SAS session will also terminate. In Jupyterhub, there are configuration options to shutdown inactive sessions and the SAS kernel complies with those directives.
132+
A SAS session is started for each notebook you have open i.e. 5 notebooks open = 5 SAS sessions. Those sessions will remain active for the life of the notebook. If you shutdown your notebook, the SAS session will also terminate. In JupyterHub, there are configuration options to shutdown inactive sessions and the SAS kernel complies with those directives.
133133

134134
- I restarted my SAS Kernel and now my WORK library is now empty. What happened?
135135

0 commit comments

Comments
 (0)
0