我剛剛學習在R中編程並最好地編寫了我的問題,如果它不是很清楚,我可以提前道歉。輕鬆點我。我可以在R Studio控制檯中使用shinyServer中生成的變量嗎
我正在寫一個Shiny程序,並在R的Shiny包中的shinyServer函數中定義了一些變量,但是我希望能夠在控制檯中訪問這些變量以確保我的代碼正在做我'米規劃。因爲它們不是全局變量。
這是我的server.R代碼。我希望能夠在控制檯中看到inFile變量以查看它包含的內容。
shinyServer(function(input, output) {
output$picture <- renderPlot({
inFile <- input$file1
if (is.null(inFile))
return(NULL)
image0 <- readImage(inFile$datapath)
image1 <- image0[3265:3825,660:770,1:3]
profile_image1 <- rowSums(image0)
plot(-1*profile_image1)
})
})
似乎是一個死鏈接... –