2014-03-28 87 views
0


我完全是新的閃亮,道歉,如果我問太基本的問題。
問題1:
如何讀取閃亮的數據幀?像read.table。
這裏是我的代碼:
閱讀有光澤的數據幀

ui.R 
fileInput('file1', 'Choose txt file:', 
       accept=c('text', 'tab-separated-values')) 
server.R 
data1<-read.table(input$file1) # inside renderPlot 

但是,這是行不通的。我想以製表符分隔的文件作爲輸入。

問題2:

如何保持兩個菜單選項在同一條線上,像

fileInput('file1', 'Choose txt file:', 
       accept=c('text', 'tab-separated-values')), 

selectInput("M", label= "Select M value:", 
       choices = 2:15) 

如何顯示在同一行的上述項目,沒有一個低於一個?
在此先感謝!

回答

0

爲製表符分隔的文件read.table(file, header = TRUE, sep = "")一個CSV data <-read.csv("data.csv",header=TRUE,sep="," ,quote='"') 我會建議你創建一個global.R文件做數據的讀取,而不是在一個函數這樣做

+0

致謝!正如你建議我使用'data <-read.table(file,header = TRUE,sep =「/ t」)',仍然沒有用。我在渲染圖中使用了這個。錯誤是:「文件」必須是字符串或連接。 – ramesh

+1

嘗試在文件名上使用雙引號 – Keniajin

+0

它是sep =「\ t」, – BobHy