Questions tagged [par]

This tag has no Wiki Excerpt yet!

par is a paragraph reformatter, vaguely similar to fmt, but better. It can format, justify, align, slice and dice using a bewildering array of options. See http://www.nicemice.net/par/

par is a filter which copies its input to its output, changing all white characters (except newlines) to spaces, and reformatting each paragraph. Paragraphs are separated by protected, blank, and bodiless lines (see the Terminology section for definitions), and optionally delimited by indentation (see the d option in the Options section). Each output paragraph is generated from the corresponding input paragraph as follows:

  1. An optional prefix and/or suffix is removed from each input line.
  2. The remainder is divided into words (separated by spaces).
  3. The words are joined into lines to make an eye-pleasing paragraph.
  4. The prefixes and suffixes are reattached.

If there are suffixes, spaces are inserted before them so that they all end in the same column.

In scientific software for statistical computing and graphics, par is a use function to set or query graphical parameters. Many parameters can also be passed as arguments to plotting functions. See ?par.

213 questions
0
votes
2 answers

Virgo Jetty Server doesn't create URL for deployed .par

I tried to move my web application from Virgo Tomcat server to Virgo Jetty server to get better support for websockets. The web application is successfully deployed and started but i didn't found the application under the same URL like in Virgo…
Happo
  • 1,375
  • 3
  • 16
  • 34
0
votes
1 answer

Using par to format stylized Fortran comments

All, I was wondering if anyone out there was a par guru. I'm mainly wondering if there is a way to get par to see a Fortran comment style that is used in many programs I work with. For example, if I have: ! 2001Jan01 Jimson Lorem ipsum dolor…
Fortran
  • 475
  • 1
  • 5
  • 8
0
votes
1 answer

PAR : Explanation needed to create a PAR archive and use it remotely

I would like to deploy my Perl application to several remote servers. My perl application consists of one big program, using non-core modules : Path::Iterator::Rule, XML::Writer, and two home-made modules. I would like to be able to deploy my…
Jonathan Taws
  • 1,168
  • 11
  • 24
0
votes
1 answer

cant locate MozRepl.pm in @INC

I have a Perl script which uses WWW::Mechanize::Firefox which works well before its been converted into Executable file by using PAR::Packager. it shows an error as Can't locate MozRepl.pm in @INC Need some suggestion to solve this issue, Thank…
Balakumar
  • 650
  • 1
  • 12
  • 29
0
votes
2 answers

unexpected "=" in par=c(...)

I'm trying to reproduce the following code (nls function does not perform well), but with an extra implementation, using for loops, sprintf and as.formula(), that adds variables depending of the number of peaks in the given spectrum. To be more…
0
votes
1 answer

Creating MAVEN PAR module for EAR

In my migration from ANT to MAVEN I arived at a point where I need to create a PAR (persistence Archive) and incorporate it in my final EAR. The MAVEN's documentation http://maven.apache.org/plugins/maven-ear-plugin/modules.html#parModule mentions…
Kilátó
  • 403
  • 3
  • 10
  • 19
0
votes
1 answer

How to do a tile plot of a specialised plotting function from package

I want to plot 4 of the following plots as an par(mfrow=c(2,2)) type arrangement. install.packages("wavelets") require(wavelets) dat <- rnorm(100) plot.modwt(modwt(dat)) #4 of these in a 2x2 grid is desired However, layout and mfrow based attempts…
user2763361
  • 3,789
  • 11
  • 45
  • 81
0
votes
2 answers

Add Legend to Multiple Figure in R

I am concatenating multiple plots into one figure (24 to be specific) and I can't quite figure out how to add a legend for the whole figure. par(mfrow = c(4,6)) for(i in 1:24){ x <- rep(0,3) y <- rnorm(3, 3) par(family = "Garamond") col_vec <- c(…
coding_heart
  • 1,245
  • 3
  • 25
  • 46
0
votes
1 answer

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 capabilities. Any guidance is greatly…
traggatmot
  • 1,423
  • 5
  • 26
  • 51
0
votes
1 answer

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 version (5.16.2) doesn't match executable version…
emily
  • 61
  • 1
  • 3
-1
votes
1 answer

Make development on SAP Netweaver AS more comfortable?

I'm developing a J2EE-based web application on a SAP Netweaver Application Server. I have 2 questions: I have to deploy PAR file every time I want to test my JSPDynPage or portal component on this remote server. This operation is expensive if I…
jRicca
  • 585
  • 2
  • 5
  • 11
-1
votes
1 answer

Pass a regex pattern to Perl Packer from Powershell

How do I correctly write this in a Windows Powershell? Coming from macOS, I have some problems in understanding what it is wrong with this: pp -u -g -o Executable -f Bleach="^(AAA_|BBB_|MainScript)" MainScript.pl The regular expression to be…
Kelly o'Brian
  • 415
  • 3
  • 12
-1
votes
1 answer

"Error in plot.new()" when stacking two simple plots

I simply want to stack two simple line plots in base R. Here is what I tried: x <- c(1:100) y <- c(100:1) old.par <- par(mfrow = c(2, 1)) plot(x, y) plot(x, y) par(old.par) I used this method in the past successfully, but this time R throws me an…
Joe
  • 1,628
  • 3
  • 25
  • 39
-1
votes
1 answer

Is ParHashMap faster in lookup operations than HashMap?

Is ParHashMap faster in lookup operations(look for an element) than HashMap?
Spar
  • 463
  • 1
  • 5
  • 23
-1
votes
1 answer

ios swift 3 xml parsing and displaying the data

I have tried to parse the xml data that i have . But i dont know what i am doing not able to print the data in screen as well as in console. for my api : Request-type : GET Content-type : application/xml url : www.example.com/data here my actual…
hybrid Dev
  • 529
  • 3
  • 14
  • 33
1 2 3
14
15