DS4PS / cpp-529-spr-2021

Course shell for CPP 529 Community Analytics
http://ds4ps.org/cpp-529-spr-2021/
2 stars 0 forks source link

Lab 2 shows progress bar #7

Closed Johaning closed 3 years ago

Johaning commented 3 years ago

When I knit my file, it shows multiple pages of a progress bar after my Step 1 code. Any suggestions for how to get rid of this? This is just the first bit, it continues on until it gets to 100%.

image

RTrehern-ASU commented 3 years ago

@Johaning , If you don't want it to appear when you knit the file into .html add the command "include=FALSE" at the start of your code chunk. This is how it would look:

# insert your code here. 

Anything in that code chunk will not appear in the .html file.

RTrehern-ASU commented 3 years ago

@Johaning Sorry, that should look like " {r, include=FALSE} ..." but it appeared as a code chunk instead.