similar to: Unable to make bitmapdll files on windows 7 64 bit machine

Displaying 20 results from an estimated 500 matches similar to: "Unable to make bitmapdll files on windows 7 64 bit machine"

2011 Mar 31
1
Problem running "make bitmapdll" with R-2.13 beta r55221 on Windows
Hello, I am building R r55221 according to http://cran.r-project.org/doc/manuals/R-admin.html#Building-from-source After I have done "make all && make recommended", "make bitmapdll" returns the following: E:\sandbox\R-2.13.r55221\src\gnuwin32>make bitmapdll make[1]: Entering directory `/cygdrive/e/sandbox/R-2.13.r55221/src/gnuwin32/bitmap' make CC='gcc
2011 Jan 19
1
problem with constructing bitmap
Dear R People: I'm building R-2.12.1 from scratch on a Windows XP machine. The "make all recommended" worked fine, but when I did the make in the bitmap directory, I got the following error: C:\R\R-2.12.1\src\gnuwin32\bitmap>make make make CC='gcc -std=gnu99' AR='ar' \ CFLAGS="-O3 -I../../../extra/zlib -DPNG_NO_MMX_CODE" \ RANLIB=ranlib
2007 Dec 30
1
Histogram with different colors for different portions
Dear Rusers, I would like to color different sections of a histogram different colors. I have an example that was done by "brute force" given below. Has anyone implemented something like this in general? If not, any suggestions/pointers on how to write a general function to do so would be most appreciated. Alan-
2004 Aug 05
1
Windows build
I've tried building R in Windows and had trouble compiling Bitmap.dll (make bitmapdll) and the docs (make docs). See make output below: E:\R\R-1.9.1\src\gnuwin32>make bitmapdll make -C bitmap make[1]: Entering directory `/cygdrive/e/R/R-1.9.1/src/gnuwin32/bitmap' make[3]: `libz.a' is up to date. make[3]: scripts/makefile.std: No such file or directory make[3]: *** No rule to make
2006 Oct 28
2
Package development on Windows - latest guidance?
I would like to start building R packages under Windows XP. I have programming experience and a minimal but working knowlege of many Unix (-like) programming tools. The package functions (for now) will be from R source, not C or Fortran. I've installed Rtools, Perl, the MS hhc, and so on. I am setting up a command shell with the correct PATH for building packages. (The master Windows PATH
2001 May 23
4
Matrix manipulation
Hi, Suppose I have a matrix with, say 12 columns. I would like to extract out column 2 ~ 8 and 11 ~ 12 then combine them together. I tried with success to extract out the columns by doing: foo <- test[,2:8] goo <- test[,11:12] However then I am having trouble combining foo and goo. Helps are appreciated! Cheers, Kevin ----------------------------------- Ko-Kang Kevin Wang
2001 Mar 01
3
How do you expand memory capability (Was: R crashes in Windows ME)
Hello- Since my data bank in SPSS has > 40 variables, I think that R crashes because of the memory limit. In Maindonald?s UsingR text, on pg 3, there?s a footnote that reads: "If you want larger memory space than the default you may want a target akin to <path to binary>\rw091\bin\rgui.exe --visize 30M --nsize 1000K [The default is --vsize 6M --nsize 250K
2013 Mar 07
1
Fwd: mistake on Securing SSH
This was sent to me regarding the wiki. ---------- Forwarded message ---------- From: "Martin Kon??ek" <mkonicek12 at gmail.com> Date: Mar 7, 2013 4:44 AM Subject: mistake on Securing SSH To: <timothy.ty.lee at gmail.com> Cc: Hi TImothy, I saw wiki http://wiki.centos.org/HowTos/Network/SecuringSSH and it is pretty good, but there is a mistake. *Instead of having* iptables
2010 Sep 15
4
Sas to R
Hi, I need to call an R program from Sas. I have tried using the following code in Sas using the x command but it just calls up dos and says 'D:\Program' is not recognized as an internal or external command, operable program or batch file. ] SAS CODE: options xwait xsync; %let Rsource=S:\EPI_Data\Communicable Diseases\DR1355 Historic Communicable Disease Analaysis\R graphics; options
2011 Apr 04
6
sshd: Authentication Failures: 137 Time(s)
Hi, to prevent scripted dictionary attacks to sshd I applied those iptables rules: -A INPUT -p tcp -m state --state NEW -m tcp --dport 22 -m recent --update --seconds 60 --hitcount 4 --name SSH --rsource -j DROP -A INPUT -p tcp -m state --state NEW -m tcp --dport 22 -m recent --set --name SSH --rsource And this is part of logwatch: sshd: Authentication Failures: unknown
2015 Dec 29
1
Firewall trouble?
Alright, I have setup the new rules and am waiting to see if I have any issues. If I do, I will keep working on it. I also read the article below, which mentions exactly what you I was told about 2008 and newer using different ports. https://support.microsoft.com/en-us/kb/929851 Here is the new configuration: root at dc01:~# iptables -S -P INPUT DROP -P FORWARD DROP -P OUTPUT ACCEPT -A INPUT -m
2012 May 25
1
R+Stata batch mode
Dear R help, I am using Stata, and I use a Stata ado file (Rsource) to run R in batch mode within Stata Everything works fine .... except for the fact that I cannot export the graphics that I obtain with my computations written in my R source file I believe this is related to the global Rterm_options `"--vanilla"' that I need to precise to Rsource (otherwise it does not work) ...
2002 Mar 01
3
Power of t-test in R vs. S-PLUS
Dear all, I found a discrepancy while performing a power calculation for a two sample t-test in R and S-PLUS, respectively. For given values of sample number (5 each), sd (0.2) , significance level (0.01), and a desired power (80%) I looked for the difference in means. These values differ: 0.5488882 in R and 0.4322771 in S-PLUS (see dump below). Did I overlook any detail or confuse some
2015 Dec 28
9
Firewall trouble?
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 I recently tried adding a firewall to my Samba 4 server using the port information I found on the wiki. Below is a dump of the resulting rules. root at dc01:~# iptables -S - -P INPUT DROP - -P FORWARD DROP - -P OUTPUT ACCEPT - -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT - -A INPUT -p tcp -m tcp --dport 22 -m state --state NEW -m
2001 Apr 09
5
predict problem
Windows 98 R : Copyright 2001, The R Development Core Team Version 1.2.1 (2001-01-15) Dear friends. How comes this works and produce a single prediction: x <- rnorm(15) y <- x + rnorm(15) predict(lm(y ~ x)) new <- data.frame(x = seq(-3, 3, 0.5)) predict(lm(y ~ x), new, se.fit = TRUE) pred.w.plim <- predict(lm(y ~ x), new, interval="confidence") new1 <- data.frame(x=3)
2009 Sep 22
2
A couple of suggestions: source function (package base)
Hi, I've been calling the function "source" (package base) from Tinn-R editor to send files, marked blocks and selections to R interpreter because it avoids a lot of problems related with input/output synchronization in the Rgui output! The new RGedit plugin is also using this function in this way, and we are finishing a new version of a plugin to Vim (Vim-R-plugin2) which uses
2003 Oct 01
1
permission problem on R install
Dear R People: I'm trying to compile R for Windows from source. I get to the Making package base and then c:\rsource\R-1.7.1\bin\rterm.exe permission denied How do I change the permissions, please? Thanks again R-1.1.1 Sincerely, Erin mailto: hodgess at gator.uhd.edu
2011 Mar 05
1
problem with building bitmapdll on Windows
Dear R Development People: I was trying to build R-2.12.2 from source on a Windows XP machine. Doing the make all recommended works fine, but building the bitmap dll is a problem. It seems to be in the libpng directory. I got libpng-1.5.1, and untarred it. However, there is no makefile.mingw file in the scripts directory. I then obtained a version of libpng-1.4.5, and the file is there.
2015 Dec 29
1
Firewall trouble?
I just looked up 42 and 68. I do not use WINS or BOOTP. I am removing range 1024-5000 and replacing it with 49612-65535 now. I already allowed 389 TCP. Lead IT/IS Specialist Reach Technology FP, Inc On 12/29/2015 03:58 AM, L.P.H. van Belle wrote: > Hai, > > Im missing a few things. > > And maybe time server port to open? Are your dc's time server also? > These are the
1999 Nov 08
1
Nested Designs
Dear R list, What is the proper way to specify a nested model so that the F values agree with the expected mean square errors? Specifically, suppose I have a design where "Heads" are nested within "Machines". I would like to model the following Y_ijk = Mu + Machine_i +Head_j(i) +Error_k(ij). Using the commands below, > summary(aov(Strain~Machine + Head%in%Machine ))