Can you please post an example of your data? Running the dput() function on an object that holds data and pasting the output here provides a convenient way for others to use your data. For example, if you have a data frame named DF, you can post its entire content using the output of
dput(DF)
If you want to post only part of the data frame, you can use the head() function to select the first N rows
dput(head(DF, 20))