How to read .mod file in R? [closed] - r

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I have stored the model in .mod extension.
Now I have to read the file.
Tried installing ProTrackR package and read using read.module.
But not able to read the file.

You can try
read.module(filename, ignore.validity = F)

Related

how i can connect my netlogo code with arduino? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 days ago.
Improve this question
I have a problem in my connection (my netlogo code with arduino) I askek chatgpt but I didn't get any vailable answer could any body help me in that ??
I just want to see the result like i'm using netlogo with any other language

How Can I move multiple files between folders [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 days ago.
Improve this question
I have several folders in a file that I want to move into a new folder. I started using R recently and i am not sure how to go about.
I want to move files "from ref-data" to "data"
Thank you in advance
my.files <- list.files("/home/zzeinabd/MyWorkDir/ref-data")
for (x in my.files{
file.copy(from=x,to="/home/zzeinabd/MyWorkDir/data")
}
my.files3 <- list.files("/home/zzeinabd/MyWorkDir/data")
my.files3
character(0)

Can you run R code on a .md file? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I'm new to R, so this might be a stupid question but I'd appreciate any help.
Can you execute code on a .md file? I know that you can include code, but it doesn't show the output like it does in a .Rmd file. Am I doing something wrong?
Thanks!

in html is possible to input excel spreadsheet of data and form a graph? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I want to create a program which allow in html to read excel data and form a graph but I do not know how to do it.
Any idea how to do it? Possible then could you send me a link I can look to start the project?
Take a look at js-xlsx(https://github.com/SheetJS/js-xlsx) library using tha t you can parse excel files.

How to trigger R code from excel? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I want to trigger R code from an excel spreadsheet. I couldn't find any options other than Rexcel. Is there any alternative or simpler way to do this (may be use VBA)?
In VBA you can call any command line programs, so you can call R in batch mode.
Call Shell("R --vanilla scriptfile.R outputfile.txt")

Resources