1

我通过 F# 脚本将 excel 数据导入到 R 回归中使用。代码是:

let path = @"C:\Data\DataForRegression.csv"
let fileStream = new FileStream(path,FileMode.Open,FileAccess.Read)
let streamReader = new StreamReader(fileStream)
let contents = streamReader.ReadToEnd()

let cleanContents =
    contents.Split([|'\n'|])
    |> Seq.map(fun line -> line.Split([|','|]))
    |> Seq.skip(1)
    |> Seq.map(fun values ->
        Double.Parse(values.[0]),
        Double.Parse(values.[1]),
        DateTime.Parse(values.[2]).ToShortDateString(),
        Int32.Parse(values.[3]),
        Int32.Parse(values.[4]),
        Int32.Parse(values.[5]),
        Int32.Parse(values.[6]))

//open R
let environmentPath = System.Environment.GetEnvironmentVariable("PATH")
let binaryPath = @"C:\Program Files\R\R-3.0.1\bin\x64"
System.Environment.SetEnvironmentVariable("PATH",environmentPath+System.IO.Path.PathSeparator.ToString()+binaryPath)

let engine = RDotNet.REngine.CreateInstance("RDotNet")
engine.Initialize()

let pmpm = engine.CreateNumericVector(cleanContents |> Seq.map (fun (a,b,c,d,e,f,g) -> a))
engine.SetSymbol("pmpm",pmpm)

数据的第一行如下所示:

$66.92,0.9458,Jan-13,0,0,0,1

当我运行它时,我得到了这个:

System.FormatException:输入字符串的格式不正确。
在 System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt) at FSI_0002.cleanContents@18.Invoke(String[] values) 在 C:\TFS\Tff.RDotNetExample_Solution\Tff.RDotNetExample\RegressionUsingExcelImport.fsx:line 19在 Microsoft.FSharp.Collections.IEnumerator.map@109.DoMoveNext(b&) 在 Microsoft.FSharp.Collections.IEnumerator.MapEnumerator 1.System-Collections-IEnumerator-MoveNext() 在 System.Linq.Enumerable.Count[TSource]( IEnumerable 1..ctor(REngine 引擎,SymbolicExpressionType 类型,IEnumerable1.System-Collections-IEnumerator-MoveNext() at Microsoft.FSharp.Collections.IEnumerator.map@109.DoMoveNext(b& )
at Microsoft.FSharp.Collections.IEnumerator.MapEnumerator
1 source) at RDotNet.Vector1 vector) at RDotNet.NumericVector..ctor(REngine engine, IEnumerable1 向量)在 RDotNet.REngineExtension.CreateNumericVector(REngine 引擎,IEnumerable`1 向量)在 .$FSI_0002.main@() 在 C:\TFS\Tff.RDotNetExample_Solution\Tff.RDotNetExample\RegressionUsingExcelImport.fsx:line 35 由于停止错误

有谁知道我需要做什么来转换数据?我的预感是它不喜欢 '$' - 但它不会将问题加载到 Double.Parse 中(除非它没有被评估?)。

提前致谢

4

2 回答 2

6

使用以下内容:

Double.Parse(values.[0], NumberStyles.AllowDecimalPoint ||| NumberStyles.AllowCurrencySymbol, CultureInfo("en-US"))

请参阅http://msdn.microsoft.com/en-us/library/fd84bdyt.aspx

s 参数使用 NumberStyles.Float 和 NumberStyles.AllowThousands 标志的组合进行解释。这意味着允许使用空格和千位分隔符,例如,不允许使用货币符号。为了更好地控制 s 中允许哪些样式元素以使解析操作成功,请调用 Double.Parse(String, NumberStyles) 或 Double.Parse(String, NumberStyles, IFormatProvider) 方法。

因此,即使您的默认文化已经是$货币符号,您仍然必须明确使用NumberStyles.AllowCurrencySymbol

于 2013-09-10T12:57:53.300 回答
0

尝试更改Double.Parse(values.[0])toDouble.Parse(values.[0].Remove(0,1))以删除美元符号。

于 2013-09-10T12:56:43.310 回答