The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
54 views

Fill up white space in R Plots

How does one get rid of white space when plotting in R as in the example below? I would like to do this because when I want to multiple plots on a page it looks terrible. I'm using the par ...
1
vote
0answers
33 views

How do I jitter the node split strings in plotting ctree output from partykit?

I have an issue where I am using mainly categorical data, set to a class of factor, in a classification tree. I am using the partykit package in R and not party as previous answers here suggested that ...
2
votes
0answers
52 views

PAR installation in perl cannot be completed

I desperately need your help! I need to compile a perl script to an executable so that it can be run in windows without having perl installed. I know it is not a good idea to do this , but I ...
1
vote
1answer
72 views

Several or multiple timeseries plot outputs from a single data frame

Hello, I have been struggling with this problem for a while now and anyone who can help me out I would greatly appreciate it. First off, I am working with time series data in a single data frame ...
-1
votes
1answer
35 views

Questions about using NLS.LM in the minpack.lm package

I am trying to use the minpack.lm package in R. Specifically the NLS.LM function. I'm pouring through the manual and help files, but the requirements for setting it up are a little beyond my current ...
0
votes
0answers
39 views

Perl Got error when use pp -o test.pl

I tried to convert perl program to exe file. My perl version is 5.16.2 on my Windows 7 64bit, I use ppm install PAR:Packer, version 1.013, But when I use pp -o test.pl, I got the error: Perl lib ...
0
votes
2answers
160 views

Perl Install PAR:Packer Problems

My perl version is 5.16.2 on my Windows 7 64bit, I failed to install PAR:Packer. I tried active perl and strawberry perl , both got the same error. Can you please give me some suggestion. Below is my ...
1
vote
2answers
205 views

Fail to install 'PAR::Packer' Perl module on Windows 7 - 64 bit - using DWIM Perl

I am working on MS-Windows 7 PC - 64 bit. I am using "DWIM Perl for Windows" (http://dwimperl.com/windows.html) - which is a Strawberry Perl derivative. I am trying to run 'install PAR::Packer' ...
0
votes
0answers
29 views

Par() function Error

I need to get an R-plot something similar to shown in the image. I have tried initially for two plots with the following code: par(mfrow=c(2,1)) plot(range(data[,4]), range(c(data[,3],data[,2])), ...
2
votes
1answer
69 views

BayesTree package plot extraction in R

I am using the BayesTree package in R. Using the author's example: ##simulate data (example from Friedman MARS paper) f = function(x){ 10*sin(pi*x[,1]*x[,2]) + 20*(x[,3]-.5)^2+10*x[,4]+5*x[,5] } ...
0
votes
0answers
96 views

par() and corrplot() in R

I wanted to combine a corrplot and dendrogram in one figure. So as mention in Combine base and ggplot graphics in R figure window, I want to use the par(). Bu t the problem is that if I first depict ...
1
vote
2answers
188 views

Common main title of a figure panel compiled with par(mfrow)

I have a compilation of 4 plots drawn together with par(mfrow=c(2,2)). I would like to draw a common title for the 2 above plots and a common title for the 2 below panels that are centered between ...
2
votes
1answer
153 views

R smartly deciding about par-mfrow in a function

I want to print output, according to the amount of variables that have more than 10 unique values in a data-frame. This could be any number of variables. I am looking for a way to implement this as to ...
2
votes
1answer
95 views

How do I drop a file onto a perl script to parse it and write the output file to the same directory

I have a working perl script that opens a imput file, parse it and then open a output file and write the parsed output to it. Now I want to be able to drop a file to be script. The file should be read ...
0
votes
2answers
663 views

Issue installing PAR::Packer with strawberry perl

I'm struggling for two days now to get the PAR::Packer module installed. I'm new to CPAN, and this is the first module I want to install, so I first thought it is me. But I reinstalled strawberry Perl ...
0
votes
0answers
43 views

How do I incorporate existing binaries into a Perl parl executable?

I've a piece of C-code which I've compiled into a binary and I call it from my Perl program using backticks. Now how do I package such internal binaries into a PAR package or a pp executable such that ...
1
vote
1answer
48 views

How to change font for all subsequent plots in R?

I know how to specify font for a concrete plot, but is there a way to specify it once for all subsequent plots, histograms etc?
0
votes
0answers
99 views

How to call “Privilege user dialog exe file” by PAR(perl) [closed]

How to double click PAR(exe) and open "Privilege dialog"? Here is my code: use strict; use warnings; use utf8; use Win32::GuiTest qw/:ALL/; use Win32::Clipboard; use Win32::Exe; my ...
10
votes
2answers
498 views

plots generated by 'plot' and 'ggplot' side-by-side

Is there a way to put the plot generated by plot function and the plot by ggplot function in R in one page side-by-side? It is easy to put plots created by the same function into one page using par ...
4
votes
1answer
117 views

Named character vectors and par() in R plots

I'm trying to use a named character vector to hold a custom color palette, so I can say, e.g. palette['red'] instead of repeating "#dc322f" all over the place. However, I don't seem to be able to use ...
1
vote
2answers
157 views

Centring legend below two plots in r

I would like to centre a common legend below two plots. I have used xpd=TRUE to allow for printing outside the plot itself and oma to create space for the legend. However the legend will not move ...
2
votes
1answer
215 views

Showing multiple Probability Plots on the same graph using the plot(cenros) command from the NADA library

I am currently conducting a performance analysis for an urban stormwater management facility which employs Low Impact Development practices. I have the Event Mean Concentrations (EMCs) of several ...
0
votes
1answer
526 views

passing arguments in oracle command using vb.net

am writing code in vb.net .am using select statement in oracle command . when i pass arguments values through variable am getting error. my code ------ chk1 = TextBox1.Text d1 = Date.Parse(chk1) ...
2
votes
1answer
156 views

multiple plot arrangement by level of one variable in base plot in r

Here is my data and plot nmar <- seq (1, 100, 5) position= rep(nmar, 5) n = length (nmar ) chr = rep(1:5, each = n ) mapdata <- data.frame (chr, position, snpname = paste("SNP-", 1:length ...
2
votes
1answer
95 views

How to determine symbol size in x and y units

I would like to know the approximate dimensions of symbol in my plot area. I think that par()$ps only really refers to text size. So how is a symbol size calculated using the cex parameter? For ...
4
votes
2answers
258 views

Haskell: Why was `par` defined the way it was?

par is declared as: par :: a -> b -> b Notice, that argument one is thrown away. In order to use par you need to play tricks like using the same expression multiple times. If its purpose is ...
4
votes
3answers
2k views

Plot fitted line within certain range R

Using R, I would like to plot a linear relationship between two variables, but I would like the fitted line to be present only within the range of the data. For example, if I have the following code, ...
2
votes
1answer
193 views

How to unbleach this perl file?

How do I unbleach a Perl file that's been bleached with PAR::Packer::Bleach? The algorithm of bleaching is described in this Stack Overflow answer, however I am unable to make a working script for ...
3
votes
1answer
172 views

What is the relationship between Perl PAR::Packer's pp, par.pl, parl scripts?

I'm trying to learn PAR and PAR::Packer. I understand that PAR is a module which allows loading modules from .par archives. I don't understand the three scripts pp, par.pl, parl in PAR::Packer. ...
1
vote
1answer
1k views

Installing PAR::Packer on Windows, dmake error 255

I am trying to create a binary of a perl script for Windows, and I cannot afford commercial applications such as perl2exe and Active Perl Dev Kit (I am aware there are trial versions). Because of ...
0
votes
1answer
300 views

What are some opportunities improve performance / concurrency in the following Scala + Akka code?

I am looking for opportunities to increase concurrency and performance in my Scala 2.9 / Akka 2.0 RC2 code. Given the following code: import akka.actor._ case class DataDelivery(data:Double) class ...
3
votes
1answer
3k views

Combined plot of ggplot2 (Not in a single Plot), using par() or layout() function?

I've been thinking of using par() or layout() functions for combining ggplots. Will it be possible to use those functions? Say I want to plot ggplot for scatterplot and ggplot for histogram. And I ...
-1
votes
1answer
269 views

Perl hide code by compiling the script [duplicate]

Possible Duplicate: How can I obfuscate my Perl script to make it difficult to reverse engineer? I'm trying to run a perl script that holds my email password and I wanted to secure that ...
3
votes
1answer
220 views

Perl PP is searching the output script inside /script/

I have a really strange problem but only when running Ubuntu ( on CentOS evertyhing is working ). I've made a script in Perl and used the Mail::IMAPClient module. When I run the following command: ...
3
votes
1answer
179 views

How to add points to two plots parallelly ? (in R)

I am looking for ways to add points to three different plots in parallel. I have three scatter plots named s3d1, s3d2 and s3d3 in a single window layout(matrix(c(1,2,1,3),2, 2, byrow = TRUE)) ...
0
votes
1answer
252 views

Improving the quality of a plot with postscript output chosen

I am still learning Sweave and R. I have below a sample code that reads in a data file and plots it. I am choosing the postscript option as I like ending up with an EPS file. There are a number of ...
2
votes
1answer
1k views

What is a null graphics device?

I'm reading the R help page for ?devAskNewPage (it was linked from ?par...ask). I can't understand what par(ask=F) / par(ask=T) does. What do I need to read about to understand this: If the current ...
2
votes
4answers
5k views

How to install pp (PAR Packager)?

I have to create an exe from a Perl script. I installed ActivePerl-5.14.2.1402-MSWin32-x86-295342.msi How do I install pp?
2
votes
1answer
91 views

How to share common things among par::packer generated exe files?

I've just tried to generate *.exe files from Perl scripts by using Par::Packer, the tool works fine as expected. The situation now is I would like to distribute my Perl based application as a group ...
1
vote
1answer
179 views

Is it possible to build a single executable Perl program that will run on a variety of platforms?

I have a Perl script that I've written and can compile it using pp (PAR). I'm curious if it's possible to make a single executable that is completely portable (run on linux & windows) or do I have ...
2
votes
2answers
357 views

PAR Packer Executable Size

I have been using PAR:Packer (pp) to create binaries for windows for a while. They have always been understandably large (around 6-8MB), recently I updated my packages (I use stawberry perl on ...
1
vote
1answer
578 views

PHP HTML DOM to parse XML second result

I'm using simple PHP HTML DOM to parse XML, it is that there are several tags with the same values​​, how I can display only the second label?
0
votes
1answer
371 views

SAP Netweaver Application Server: how can I make developing experience comfortable?

I'm developing a web application (J2EE based) on SAP Web Application Server. I have 2 answer: 1) I have to deploy PAR file every time I want to test my JSPDynPage or portal component on this remote ...
1
vote
2answers
239 views

Perl: How do I add encoding to PAR packed archive

The following program: use Encode qw(:all); my @list = Encode->encodings(); print join("\n", @list); gives different results if I run script as .pl or as executable, created by pp.bat ...
2
votes
2answers
222 views

Self Updating Exe par on Windows

I am trying to create a script that will "self update" when it detects a new version on a server. Initially the idea I had was, when a new version is detected, download the file, then starts a DOS ...
10
votes
1answer
6k views

Reset par to the default values at startup

Normally when I make my own plot functions, I make a construct : op <- par("mypar"=myvalue) on.exit(par(op)) which is the standard way of reverting the par to the previous values. Imagine you've ...
1
vote
0answers
272 views

PAR2 lib for Java

I am searching for a PAR2 library to be used in a custom Java application. It seems the only lib available on sourceforge (JPar2) is in planning status since 2008, no update since then. Any of guys ...
2
votes
1answer
269 views

Compiling PAR for Perl under Windows

I've downloaded PAR from http://par.perl.org/wiki/Main_Page and compiled it after reading the README file. I've used dmake-4.12-20090907 instead of nmake ('cause 1.5 does not work) from ...
0
votes
2answers
606 views

Superimpose pairs plot based on condition

*Edit:*I am sorry, but the situation could be a little bit more complex than I have shown. However, both of your scripts work, although the first might be not so clear for large dataset due to point ...
2
votes
2answers
372 views

How do I run a PAR packed file in Windows Vista or Windows 7 running with higher privileges?

Does anyone know how to make a PAR packed Perl application run with higher privileges? I've read that there must be somewhere some kind of manifest file, but how should this file look like and how to ...

1 2