markdown 特别案例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 特别案例相关的知识,希望对你有一定的参考价值。

# Special cases

## Maximum number of decimal places

```sas
proc print data=work.temp maxdec=2;
run;
```

## labels in SAS

#### Rules for labels


1.Cant perform operations with lables.
2. Its only for display.
3. But it changes the **dataset properties**.


#### Defining single lables

```sas
proc print data=work.test;
label  salary='annual salary`;
run;
```

#### Defining multiple labels

```sas
proc print data=work.test;
label salary=`annual salary`;
      rating=`new rating`;
run;
```

#### Printing labels

```sas
proc print data=work.test;
label x=`new x`;
run;
```

```sas
proc print data=work.test;
var x;
run;
```

This will throw an error as you can not print or operate on labels. They are only for display. 


## page size

```sas
options ps=10;
```

## list size

```sas
options ls=10;
```

#### Using page size or list size

```sas
options ps=10;
options ls=10;
proc print data=work.test;
run;
```

以上是关于markdown 特别案例的主要内容,如果未能解决你的问题,请参考以下文章

markdown Hive技巧,案例归集

markdown 研究案例:“InnoDB:数据库没有正常关闭!”

markdown 语法案例

从 Vue-cli 开始构建 UI 库到 Markdown 生成文档和演示案例

10分钟学会使用Markdown绘制UML时序图

Markdown神器,程序员的利器哈哈