Displaying 5 results from an estimated 5 matches for "totalnetrev".
2018 May 07
2
read.csv and Decimal places
...186
5394970
-57335.49
-518259.2
4819375
7
Jul 2016 Totals:
7/31/2016
6835273
1374085
-16746.33
-333994.2
1023344.8
1533915
-29776.31
-34898.95
1469240
4786363
-26061.45
-417613.8
4342688
But the dput indicates that the values that have decimals are correct?
For example "TotalNetRev" row 1 in View = 5973157 however, as you can see below in the dput the value is 5973156.76
Am I to believe that the true values in the CSV file are present in the R data or not?
When I create a DF I see the decimals are similar to the view? 5973157 vs. 5973156.76
tmp <- data.frame(RevFC...
2018 May 07
0
read.csv and Decimal places
...333994.2
>
> 1023344.8
>
> 1533915
>
> -29776.31
>
> -34898.95
>
> 1469240
>
> 4786363
>
> -26061.45
>
> -417613.8
>
> 4342688
>
>
> But the dput indicates that the values that have decimals are correct?
>
>
> For example "TotalNetRev" row 1 in View = 5973157 however, as you can see
> below in the dput the value is 5973156.76
>
> Am I to believe that the true values in the CSV file are present in the R
> data or not?
>
> When I create a DF I see the decimals are similar to the view? 5973157 vs.
> 597315...
2018 May 07
1
read.csv and Decimal places
...898.95
> >
> > 1469240
> >
> > 4786363
> >
> > -26061.45
> >
> > -417613.8
> >
> > 4342688
> >
> >
> > But the dput indicates that the values that have decimals are correct?
> >
> >
> > For example "TotalNetRev" row 1 in View = 5973157 however, as you can see
> > below in the dput the value is 5973156.76
> >
> > Am I to believe that the true values in the CSV file are present in the R
> > data or not?
> >
> > When I create a DF I see the decimals are similar to the...
2018 May 15
3
Forecasting tutorial "Basic Forecasting"
...0.60, -1507572.01, -1210422.01, -1529691.90, -1207461.55, -1615971.18, -978028.10, -1354515.28, -1624270.48
, -1596204.33, -1836731.26, -1310376.81, -1337718.49, -1492220.98, -1421801.16)
,.Dim = c(28L, 3L)
,.Dimnames = list(NULL, c("TotalNetRev","TotalRevAdjusted" ,"TotalRevCancelled"))
,.Tsp = c(2016, 2018, 12)
, class = c("mts", "ts", "matrix"))
Error in attributes(.Data) <- c(attributes(.Data), attrib) :
invalid time series parameters sp...
2018 May 15
0
Forecasting tutorial "Basic Forecasting"
...9.81, -1186436.41, -1108016.28, -1201663.88,
-1163848.16, -1028830.6, -1507572.01, -1210422.01, -1529691.9,
-1207461.55, -1615971.18, -978028.1, -1354515.28, -1624270.48,
-1596204.33, -1836731.26, -1310376.81, -1337718.49, -1492220.98,
-1421801.16), .Dim = c(28L, 3L), .Dimnames = list(NULL, c("TotalNetRev",
"TotalRevAdjusted", "TotalRevCancelled")), .Tsp = c(2016, 2018.25,
12), class = c("mts", "ts", "matrix"))
You were correct that the error was because of 28 time-points. This is
the fix for it.
Huzefa
On Tue, May 15, 2018 at 2:08 PM, Bill P...