Hello everyone,
I'm starting to use R/Bioconductor, and the package genoplotR in order to visualize the alingemnt of a set of gene operons in several bacterial strains.
Before going my data, I'm trying the "getting started" vignette coming with the package, and succeed in getting the plot corresponding to the example "three genes"... but... I don't have that much experience using R and am not able to visualize how they look the data it selves.
I mean, the first line of the code in the example is:
> data("three_genes")
I want to see those data. How can I do it?
Thank you very much in advance
Have you tried
view(three_genes)
? I hope you're using RStudio, makes learning easier.I do have the same question and I did, in the past worked with R. I would really like to see how the
three_genes
dataset looks like, I tried several things but for some reason is not an object.... did you find your answer?...