作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用GAUSS / Aptech进行计算,而我只是使用“保存”语法来保存结果。
然后将结果以 .fmt 格式保存。我猜必须有一些GAUSS的语法(或函数)可以将结果导出到.txt,但我找不到该语法(或函数)。
有什么功能可以读取R中的 .fmt 文件吗?
最佳答案
已经很长时间了,但是我遇到了同样的问题,并从APTECH forum中找到了以下代码,它们可以完美运行。
希望这可以帮助任何人。
假设您在名为my_variable.fmt的文件中有一些数据,
您要保存名为my_xls_file.xls的文件。您可以
像这样完成:
//load the matrix from the .fmt file
load my_variable;
//write it to an Excel file
xlsWrite(my_variable, "my_xls_file", "A1", 1, "");
//load the matrix from the .fmt file
load my_variable;
//set output to print to 'my_txt_file.txt'
//(reset means if the file exists write over it)
output file=output.txt reset;
//print 'my_variable' sending output to
//the screen and 'my_txt_file.txt'
print my_variable;
//turn output to file off so no more
//print statements go to this file
output off;
关于r - 如何将.fmt文件转换为.txt文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22911073/
我是一名优秀的程序员,十分优秀!