Skip to content

Commit

Permalink
More comments to follow grading scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
karanvirsingh99 committed Nov 22, 2022
1 parent 2b703be commit 8c9f023
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions app.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,16 @@ ihc_data <- read.csv("ihc_data.csv.gz")
## UI function ##
#################################################################

##------------------------------------------------------------------------------------------------------
## The three features in my app are
## 1) a slider that lets you choose the minimimum neighborhood size
## (useful in visualizing output with different thresholds)
## 2) a slider that lets you chose the maximum distance between cells to be considered interacting
## (useful in visualizing output with different thresholds)
## 3) a dropdown image selector, that allows you to run the same settings on different sample
## images and their corresponding data
##------------------------------------------------------------------------------------------------------

ui <- fluidPage(titlePanel("SPIAT package demo"), #Title
sidebarLayout(
#Sidebar Panel
Expand Down Expand Up @@ -136,8 +146,6 @@ output$neighborhood_map <- renderPlot({
theme(legend.position="none")
})

output$neighborhood_composition <- renderPlot({plot(1,1)})

}


Expand Down

0 comments on commit 8c9f023

Please sign in to comment.