在绘图闪亮的应用程序 R 编程上显示输出

时间:2021-02-02 14:12:27

标签: r shiny shiny-server shinyapps

我想在下图中这样的图上显示数据。 enter image description here 我怎么能打印这些数据

我正在尝试做类似的事情

shinyServer(function(input, output) {

    output$distPlot <- renderPlot({

        plot(
            x=0,
            y= 0,
            xaxs="i",
            yaxs="i",
            
            xlim = c(0,10),
            ylim = c(0,10)
            
        )
        grid(10,10)
        count<- 0
        i<- 1
        j<- 1
        for(i in 1:10)
        {
            
            for (j in 1:10) {
                # do something 
                
            }
        }

    })

})

0 个答案:

没有答案