Skip to content

Build recommended packages from source under Windows

2 messages · rkevinburton at charter.net, Uwe Ligges

#
Hello,
Now on to the packages. I was interested in following the flow of 'stl' so I added the following lines to stl.f in src/library/stats/src.

      do i=1,n
        write(*, '(a,2f8.3)') 'stlfts1 ', x(i), trend(i)
      end do

This is in the function stlfts. But when I execute the following 'R' code from the R console:

d <- stl(nottem, "per")

I don't see any output. Is there another version without the print statements that is getting executed?

Thank you.

Kevin
#
See the manual Writing R Extensions, Section 6.5.1: Printing from FORTRAN


Best wishes,
uwe Ligges
rkevinburton at charter.net wrote: