How to scatterplot based different column conditions in r?

My dataframe looks like this: dput(B8A) structure(list(ID = c("AUR", "AUR", "AUR", "AUR", "AUR", "AUR", "LAM", "LAM", "LAM", "LAM", "LAM", "LAM", "P0", "P01", "P02", "P1", "P18", "P2", "P22", "P23", "P24", "P3", "P4"), nD_SOS = c(129L, 349L, 256L, 319L, 306L, 128L, 309L, 244L, 134L, 356L, 131L, 302L, 276L, 296L, 294L, 310L, 337L, 291L, 308L, 295L, 308L, 303L,… Read More How to scatterplot based different column conditions in r?

How to color scatter plot points that meet 2 or more conditions in different columns in R

Here is a part of a dataframe that I have value1 value2 condition1 condition2 condition3 2.3 0.1 FALSE FALSE TRUE 3.5 2.6 FALSE FALSE TRUE 3.1 2.5 TRUE TRUE TRUE 3.2 2.3 FALSE TRUE TRUE 2.4 1.1 TRUE TRUE FALSE 2.7 2.2 FALSE TRUE FALSE 2.5 3 TRUE FALSE TRUE 2.9 2 TRUE TRUE TRUE… Read More How to color scatter plot points that meet 2 or more conditions in different columns in R

Create a scatter plot from an ndarray using the position in the row as the x-axis value and the value in the array for the y-axis

much like the title says I am trying to create a graph that shows 1-6 on the x-axis (the values position in the row of the array) and its value on the y-axis. A snippet from the array is shown below, with each column representing a coefficient number from 1-6. [0.99105 0.96213 0.96864 0.96833 0.96698… Read More Create a scatter plot from an ndarray using the position in the row as the x-axis value and the value in the array for the y-axis