Skip to main content

Posts

Showing posts with the label r language

R Language – Multiple Line Plots In a Single Graph

If you need to display a graph of a varible for different configurations, lattice package comes in handy. R code and results are given below. library ( "lattice" ) # prepare data vectors for different k values k5x = c ( 0.04576659038901602 ,  0.04576659038901602 ,  0.04576659038901602 ,  0.04576659038901602 ,  0.04576659038901602 ,  0.07627765064836003 ) k5y = c ( 0 ,  0.047619047619047616 ,  0.047619047619047616 ,  0.09523809523809523 ,  0.2857142857142857 ,  0.3333333333333333 ) k10x = c ( 0.04576659038901602 ,  0.04576659038901602 ,  0.04576659038901602 ,  0.04576659038901602 ,  0.06102212051868802 ,  0.09153318077803203 ) k10y = c ( 0 ,  0.047619047619047616 ,  0.047619047619047616 ,  0.09523809523809523 ,  0.2857142857142857 ,  0.3333333333333333 ) k25x = c ( 0.04576659038901602 ,  0.04576659038901602 ,  0.04576659038901602 ,  0.045766590389016...