Posts

Showing posts from January, 2023

R code for grading students using r shinny

  RCODE FOR GRADI N G STUDENTS   library(shiny) library(shinythemes)   ui<-fluidPage(theme=shinytheme("superhero"),     sidebarLayou t(       sidebarPanel(         titlePanel("ENTER YOUR GRADE"),   numericInput("num","MATH",value=0,min=0,max=100),   numericInput("num1","ENGLISH",value=1,min=0,max=100),   numericInput("num2","KISWAHILI",value=1,min=0,max=100),   numericInput("num3","SCIENCE",value=1,min=0,max=100),   numericInput("num4","CRE",value=1,min=0,max=100),   numericInput("num5","select no of units you took",value=1,min=1,max=80),   fileInput("fl","upload")   ),mainPanel(   titlePanel("Estimate your mean score"),     navbarPage(   tabPanel("dumm"),   tabPanel("How",tags$div(HTML("<i>Use the app by inputing marks you scored<br>  ...