I have a .csv
file in my workstation. How can I open that file in R and do statistical calculation?
相关问题
- R - Quantstart: Testing Strategy on Multiple Equit
- Using predict with svyglm
- Reshape matrix by rows
- Extract P-Values from Dunnett Test into a Table by
- split data frame into two by column value [duplica
相关文章
- How to convert summary output to a data frame?
- How to plot smoother curves in R
- Paste all possible diagonals of an n*n matrix or d
- ess-rdired: I get this error “no ESS process is as
- How to read local csv file in client side javascri
- How to use doMC under Windows or alternative paral
- dyLimit for limited time in Dygraphs
- Saving state of Shiny app to be restored later
You would use the
read.csv
function; for example:You can also reference this tutorial for more details.
Note: make sure the
.csv
file to read is in your working directory (usinggetwd()
) or specify the right path to file. If you want, you can set the current directory usingsetwd
.