jbryer / DATA606Spring2018

DATA 606 - Statistics and Probability for Data Analytics
3 stars 2 forks source link

Issue while vignettes in package DATA606 #2

Closed rajk11040 closed 6 years ago

rajk11040 commented 6 years ago

Hi I am having an issue while installing the software on my PC (as per the link http://data606.net/course-overview/software/). I was able to complete all other steps prior to this successfully.

I tried to attached screenshot but got an error. Basically

vignette(package='DATA606') results in "no vignettes found"

Please see below and advice.

library('DATA606')

Welcome to CUNY DATA606 Statistics and Probability for Data Analytics This package is designed to support this course. The text book used is OpenIntro Statistics, 3rd Edition. You can read this by typing vignette('os3') or visit www.OpenIntro.org.

The getLabs() function will return a list of the labs available.

The demo(package='DATA606') will list the demos that are available.

Attaching package: ‘DATA606’

The following object is masked from ‘package:utils’:

demo

vignette(package='DATA606') no vignettes found vignette('os3') Warning message: vignette ‘os3’ not found

jbryer commented 6 years ago

Did you call the vignette function before or after the library(DATA606) command? It needs to be after. That is:

library(DATA6060)
vignette(package='DATA606')

On Thu, Feb 1, 2018 at 4:00 PM, rajk11040 notifications@github.com wrote:

Hi I am having an issue while installing the software on my PC (as per the link http://data606.net/course-overview/software/). I was able to complete all other steps prior to this successfully.

I tried to attached screenshot but got an error. Basically

vignette(package='DATA606') results in "no vignettes found"

Please see below and advice.

library('DATA606')

Welcome to CUNY DATA606 Statistics and Probability for Data Analytics This package is designed to support this course. The text book used is OpenIntro Statistics, 3rd Edition. You can read this by typing vignette('os3') or visit www.OpenIntro.org.

The getLabs() function will return a list of the labs available.

The demo(package='DATA606') will list the demos that are available.

Attaching package: ‘DATA606’

The following object is masked from ‘package:utils’:

demo

vignette(package='DATA606') no vignettes found vignette('os3') Warning message: vignette ‘os3’ not found

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/jbryer/DATA606Spring2018/issues/2, or mute the thread https://github.com/notifications/unsubscribe-auth/AAmEj6B_VvE_PsPnH9dNc9vVUSrmA4Pxks5tQlAogaJpZM4R2elC .

rajk11040 commented 6 years ago

I called it after the library function.... Please see below... I am trying to paste the response directly from the console window. Please advice. thanks Raj

library('DATA606')
Welcome to CUNY DATA606 Statistics and Probability for Data Analytics This package is designed to support this course. The text book used is OpenIntro Statistics, 3rd Edition. You can read this by typing vignette('os3') or visit www.OpenIntro.org. The getLabs() function will return a list of the labs available. The demo(package='DATA606') will list the demos that are available. Attaching package: ‘DATA606’ The following object is masked from ‘package:utils’: demo
vignette(package='DATA606') no vignettes found

  | >

rajk11040 commented 6 years ago

vignetteerror1

rajk11040 commented 6 years ago

Nevermind... I think I figured it out... I was expecting it to return list of vignettes .... but I guess "no vignettes found" is ok I was able to start lab despite the earlier message. Sorry as I was confused with this.