I want to Find the no of students who get >500 and >300-<400 and <400 of various subjects in R.
My Data set:
 English     : int  430 430 430 430 430 430 430 430 430 430 ...
 Quantitative: int  605 575 325 575 605 120 475 475 785 460 ...
 Logical     : int  555 510 470 460 505 310 435 360 530 435 ...
 Coding      : int  672 531 477 410 660 692 436 635 221 314 ...
 Pyschometric: int  224 426 616 708 302 595 328 346 760 775 ...
Input IMAGE
Required output in R should be:
Values.............: Eng Qua Log Eng% Quant% Logical%
 600 & <799: 114 182 271 10 16 10 2
 400 & <599: 322 283 393 27 24 27 34
 200 & <401: 496 333 609 42 42 42 53
 100 & <200: 241 361 138 21 21 31 12
output Image
Please provide me the commands in R programming to do so that
 
     
    