search for: cgpa

Displaying 3 results from an estimated 3 matches for "cgpa".

Did you mean: capa
2018 Apr 04
2
Plot data in sequence
Hi r-users, I would like to draw line plots. However, the plot starts from 11121 data and plot data ENTRY last in the plot. Here is the code and data. datn <- read.table(header=TRUE, text=' LEVEL STATUS CGPA DIPLOMA ENTRY 3.32 DIPLOMA 11121 2.91 DIPLOMA 11122 2.90 DIPLOMA 12131 2.89 DIPLOMA 12132 2.89 DIPLOMA 13141 2.93 DIPLOMA 13142 2.96 DIPLOMA 14151 2.76 DIPLOMA 14152 2.73 STPM ENTRY 2.77 STPM 11121 3.26 STPM 11122 3.30 STPM 12131 3.28 STPM 12132 3.27 STPM 13141 3.28 STPM 13142 3.28 STPM 14151 3.30...
2018 Apr 04
0
Plot data in sequence
...h numbers first, but you can change those. > str(datn) 'data.frame': 36 obs. of 3 variables: $ LEVEL : Factor w/ 4 levels "DIPLOMA","MATRIC",..: 1 1 1 1 1 1 1 1 1 4 ... $ STATUS: Factor w/ 9 levels "11121","11122",..: 9 1 2 3 4 5 6 7 8 9 ... $ CGPA : num 3.32 2.91 2.9 2.89 2.89 2.93 2.96 2.76 2.73 2.77 ... > levels(datn$STATUS) [1] "11121" "11122" "12131" "12132" "13141" "13142" "14151" "14152" "ENTRY" > datn$STATUS <- factor(datn$STATUS, lev...
2018 Feb 07
1
A Study on "Dependence capturing strength" of four Dependence Analyzers in LLVM on SPEC 2017 benchmarks
Hi, I am Adil Arun Dangui, a 3rd year B.Tech student at IIT Hyderabad with a CGPA of 9.17. I am interested in Compilers, Compiler Optimizations and excited about LLVM and Polly. I have some familiarity of LLVM structure as we studied it in the Compiler Engineering course at IITH. Here <https://github.com/Adildangui/A-study-on-dependence-capturing-strength-of-4-dependence-an...