Skip to content

Commit 5a8ec60

Browse files
Converted 4 consecutive <code> lines into a fenced code block.
1 parent 129838a commit 5a8ec60

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

docs/machine-learning/r/r-libraries-and-data-types.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,13 @@ outputDataSet <- inputDataSet'
137137

138138
Note the use of the `str` function in R to get the schema of the output data. This function returns the following information:
139139

140-
<code>'data.frame':2 obs. of 4 variables:</code>
141-
<code> $ c1: int 1 -11</code>
142-
<code> $ c2: Factor w/ 2 levels "Hello","world": 1 2</code>
143-
<code> $ c3: Factor w/ 2 levels "6732EA46-2D5D-430B-8A01-86E7F3351C3E",..: 2 1</code>
144-
<code> $ cR: num 4 2</code>
140+
```output
141+
'data.frame':2 obs. of 4 variables:
142+
$ c1: int 1 -11
143+
$ c2: Factor w/ 2 levels "Hello","world": 1 2
144+
$ c3: Factor w/ 2 levels "6732EA46-2D5D-430B-8A01-86E7F3351C3E",..: 2 1
145+
$ cR: num 4 2
146+
```
145147

146148
From this, you can see that the following data type conversions were implicitly performed as part of this query:
147149

0 commit comments

Comments
 (0)