Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. The file or directory 'P:/PROPENSITY/CL_Generic_Retail_201506' cannot be found.
  2.  
  3. > getwd()
  4. [1] "P:/PROPENSITY"
  5.  
  6. rx_CL_Generic_Retail_201506 <- rxImport(
  7.  
  8. inData = "CL_Generic_Retail_201506_23-05-2017.csv",
  9.  
  10. outFile = "CL_Generic_Retail_201506.xdf",
  11.  
  12. overwrite = TRUE
  13.  
  14. )
  15.  
  16. rxSummary(formula = ~ Avg_Deposits + Total_Num_ + Sumof_CC_AVGBAL_,
  17.  
  18. data = "CL_Generic_Retail_201506.xdf"
  19.  
  20. )
  21.  
  22.  
  23. Summary Statistics Results for: ~Avg_Deposits + Total_Num_ + Sumof_CC_AVGBAL_
  24. Data: "CL_Generic_Retail_201506.xdf" (RxXdfData Data Source)
  25. File name: CL_Generic_Retail_201506.xdf
  26. Number of valid observations: 7155413
  27.  
  28. Name Mean StdDev Min Max ValidObs MissingObs
  29. Avg_Deposits 4562.914627 128614.5683 -325684032 69317080.0 7155413 0
  30. Total_Num_ 7.062068 247.1506 1 224579.0 831567 6323846
  31. Sumof_CC_AVGBAL_ 951.484138 2249.3149 0 164746.6 601304 6554109
  32.  
  33. > rxSummary(formula = ~ Avg_Deposits + Total_Num_ + Sumof_CC_AVGBAL_,
  34. +
  35. + data = "CL_Generic_Retail_201506.xdf"
  36. +
  37. + )
  38.  
  39. The file or directory 'CL_Generic_Retail_201506.xdf' cannot be found.
  40.  
  41. The file or directory 'P:PROPENSITYCL_Generic_Retail_201506.xdf' cannot be found.
  42.  
  43. > getwd()
  44. [1] "P:/PROPENSITY"
  45.  
  46. rx_CL_Generic_Retail_201506 <- rxImport(inData = "CL_Generic_Retail_201506_23-05-2017.csv", outFile = "CL_Generic_Retail_201506.xdf", overwrite = TRUE,
  47. append = "rows"
  48. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement