I am new to R studio, trying load a dataset txt file from DAVID to use it with the GoPlot package to plot it, but I got "data set not found" error when I try to load the file.
install.packages('GOplot')
library(GOplot)
data(David_table_Example)
when I run the above code it installs the package then gives me "data set not found" error on the 3rd line.
data(David_table_Example)
Warning message:
In data(David_table_Example) : data set ‘David_table_Example’ not found
Blockquote