I have the following code to plot a line graph:
df %>% pivot_longer(-Client) %>% ggplot(aes(x=name,y=value,color=factor(Client),group=factor(Client)))