Questions tagged [manual]

a technical communication document intended to give assistance to people using a particular system

A user guide or user's guide, also commonly known as a manual, is a technical communication document intended to give assistance to people using a particular system.

Wikipedia article

400 questions
1
vote
0 answers

R gganimate smooth transition between levels of a factor

library(sf) library(ggplot2) library(rmapshaper) library(dplyr) library(gganimate) hr_sf <- readRDS(url("https://biogeo.ucdavis.edu/data/gadm3.6/Rsf/gadm36_HRV_1_sf.rds")) hr_sf_small <-hr_sf[,c(1,4,11)] hr_sf_small$YEAR <-…
1
vote
1 answer

Forest plot with data introduced manually in R

I have just recently received some data from my university. I have been ordered to create a forest plot with Odds ratios but the main problem is that I do not have access to the dataset except for the final values. I only have an excel with the ORs,…
Juan Pablo
  • 11
  • 3
1
vote
1 answer

confused on a part of the Lua, Reference manual Lexical Conventions

Im simply wondering what the lua reference 5.4 reference manual meant by The following strings denote other tokens: + - * / % ^ # & ~ | << >> // == ~= <= >= < > = ( ) { } …
Deltrayith
  • 17
  • 3
1
vote
1 answer

Why aren't all modules pre-imported?

I have started learning coding recently... and I often have to import modules like import random, import os, import turtle etc(in python). Why does this process have to me manual? Why aren't all these modules pre imported?
Drab Lad
  • 13
  • 2
1
vote
1 answer

How to bind Fields to DataGrid in WPF?

I am programming UI with WPF for a month. So i am new in this world. This is my first ever post here and my motherlanguage isn't English. So if there is any mistake in my writing, sorry for that. I have a problem with WPF and I am not able to find a…
Schia
  • 232
  • 1
  • 11
1
vote
1 answer

geom_text() on faceted panels causes changes in symbol mapping

I am building a faceted plot where each panel has 3 different sets of points, each with a different shape. Everything works fine, until I try to add some text to each panel using geom_text(). When I include geom_text()in the plot, I get an error…
1
vote
1 answer

Manual string 'in' function doesn't work if substring is at the end of the word

I'm trying to manually code the python string in function for an assignment. Using this code, where s is the string and t is the substring I am trying to find: def test(s, t): stidx = 0 while stidx < len(s): idx = 0 for i in…
madeleine
  • 11
  • 5
1
vote
0 answers

Python sub process not gets kill when main process killed using "kill -9" command

"main.py" will trigger sub process of another python (test.py). When I kill main.py process id using "kill -9 main.py pid", sub process still running in background. Help me with full code how to tackle this. main.py try: …
Siddeshwar
  • 73
  • 1
  • 8
1
vote
1 answer

How to access texinfo documentation from emacs?

How does one access Texinfo manuals (commandline example would be: info gdb) from within emacs? This does not appear to be M-x info as I don’t see gdb in the menus) Is there a list, perhaps, which has paths to info manuals that I need to check to…
Palace Chan
  • 8,845
  • 11
  • 41
  • 93
1
vote
2 answers

Using ls in Linux to show directories only

I'm getting myself familiar with Linux (Debian 9). However I managed to get myself confused with the ls command manual. I made up the following trivial setting for testing: meouser:~/triv_dir$ ls -laR .: total 24 drwxr-xr-x 4 meouser meouser 4096…
user9393931
  • 177
  • 2
  • 9
1
vote
0 answers

Mean FIltering in Python (Manual)

I want to implement Mean and Gaussian filtering. I implement the Median,but now I am lost while trying to calculate the average/mean and Gaussians. I need help to do it manually, since using the libraries results pretty much easier but the task is…
Kathya
  • 11
  • 2
1
vote
0 answers

What change does array_unique() make when migrating to PHP 7.2?

Here is the description of array_unique() in PHP 7.2: If sort_flags is SORT_STRING, formerly array has been copied and non-unique elements have been removed (without packing the array afterwards), but now a new array is built by adding the…
TungPS
  • 51
  • 6
1
vote
2 answers

How to display apache manual on Windows XP

I have installed apache 2.2 on Windows XP. I amended the conf to include an alias for /manual, and added a Directory section to give the path read permissions. I can access the page via //localhost/manual but it just shows unformatted text listing…
pinflo
  • 51
  • 1
  • 3
1
vote
1 answer

FiddlerScript class reference?

I am looking for a language or class reference for FiddlerScript. The Fiddler ScriptEditor has a class explorer. But this only contains a very limited amount of documentation. For example, what methods are available for the Hashtable or…
Dan Jameson
  • 1,510
  • 13
  • 20
1
vote
1 answer

R graphic 'text' package 'adj' parameter order wrong incorrect reversed?

I believe R core package graphics text function's adj parameter is incorrectly described in the manual and would be grateful if someone could confirm this before I submit a bug report. adj text: adj allows adjustment of the text with respect to (x,…
dez93_2000
  • 1,730
  • 2
  • 23
  • 34