Skip to content

Commit cf1a602

Browse files
authored
Merge pull request #295 from naupaka/fix-images
Fix markdown image syntax per issue #293
2 parents 3893f38 + ee83ec5 commit cf1a602

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

episodes/01-r-basics.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ but R is "not sure"
216216
about how to assign the name to "human\_ chr\_number" when the object name we
217217
want is "human\_chr\_number".
218218

219-
![RStudio script warning]("fig/rstudio_script_warning.png")
219+
![RStudio script warning](fig/rstudio_script_warning.png)
220220

221221
::::::::::::::::::::::::::::::::::::::::::::::::::
222222

episodes/03-basics-factors-dataframes.Rmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ you have the `variants` object, listed as 801 obs. (observations/rows)
185185
of 29 variables (columns). Double-clicking on the name of the object will open
186186
a view of the data in a new tab.
187187

188-
![RStudio data frame view]("epidoes/fig/rstudio_dataframeview.png")
188+
![RStudio data frame view](fig/rstudio_dataframeview.png)
189189

190190
We can also quickly query the dimensions of the variable using `dim()`. You'll see that the first number `801` shows the number of rows, then `29` the number of columns
191191

@@ -844,12 +844,12 @@ First, in the RStudio menu go to **File**, select **Import Dataset**, and
844844
choose **From Excel...** (notice there are several other options you can
845845
explore).
846846

847-
![RStudio import menu]("fig/rstudio_import_menu.png")
847+
![RStudio import menu](fig/rstudio_import_menu.png)
848848

849849
Next, under **File/Url:** click the <KBD>Browse</KBD> button and navigate to the **Ecoli\_metadata.xlsx** file located at `/home/dcuser/dc_sample_data/R`.
850850
You should now see a preview of the data to be imported:
851851

852-
![RStudio import screen]("fig/rstudio_import_screen.png")
852+
![RStudio import screen](fig/rstudio_import_screen.png)
853853

854854
Notice that you have the option to change the data type of each variable by
855855
clicking arrow (drop-down menu) next to each column title. Under **Import

0 commit comments

Comments
 (0)