Could you please turn this into a self-contained reprex (short for reproducible example)? It will help us help you if we can be sure we're all working with/looking at the same stuff.
If you run into problems with access to your clipboard, you can specify an outfile for the reprex, and then copy and paste the contents into the forum.
That's because your reprex has to contain the data and libraries (that's the self-contained bit). Check out the reprex FAQ (linked to above), there are a bunch of quick, but helpful resources to understand how a self-contained reproducible example works.
Basically, this is all I have and the error I get (I haven't had much time to really look into reprex but I tried reprex::reprex(si=true) and it took for ever to process. At any rate, Trying to anchor column 3 to the circle and this is all the code and libraries Im using.
It doesn’t look like your data are in the format that segAnglePo() expects. From the documentation:
the segment data should be a matrix or a data frame: column 1 is the segment name or chromosome name; column 2 is the segment start; column 3 is the segment end; column 4 is segment name2 (optional); and column 5 is segment description (optional).
You can see documentation for functions in any loaded package by running:
?functionName
or
help("functionName")
It can take some investment of time on your part to figure out how to ask a well-formulated question here. However, consider that if you don’t make that investment, both you and others will often waste time on needless back-and-forth or fruitless guessing about what could be going wrong.