Questions tagged [names]

"names" (plural) is an attribute of some R objects in the R language

In the scientific software R for statistical computing and graphics, "names" is an attribute of some data objects, like vectors (including lists) and data frames. See ?names for details.

873 questions
-2
votes
3 answers

Increase object names programmatically C#

I have a textbox for data entry and 10 textboxes for showing data. 10 viewer textboxes are visible=false by default. For example when I enter textbox count to be "3" , only 3 textboxes should be visible. (Then I can do whatever I want with those…
Halit D
  • 74
  • 10
-2
votes
1 answer

Divide rows in a given column by a name-speficied row

Having a dataframe in R, I'd like to divide all rows in a given column by a name-speficied row (here 'ABC') from the same column, and apply these to all the columns using this specific row as the normalizer. Input: A 1 1 B 1 2 C 4 4 ABC…
user2904120
  • 416
  • 1
  • 4
  • 18
-2
votes
1 answer

Display only folders from a zip archive

How do I display only folders' names from a zip archive without unzip it using C#? How do I treat the case when a folder is called abc.csv?
-2
votes
1 answer

Java - sorting a names array to match their scores

Trying to sort a String array which contains names of participants to match a scores array which holds their scores for a quiz. I've managed to sort the scores from highest to lowest, but the names are in the wrong positions.
John
  • 1
  • 2
-2
votes
3 answers

When I type "www.gstbox.com" it doesn't work but it works fine without "www"

At first my website was hosted on 000webhost.com but then I had some problems with them so I switched for networksolutions.com(paid). But after a while I realized that when I entered on www.gstbox.com it showed me that the page is not found but if I…
-2
votes
2 answers

How certain technologies got their names?

How did Ant, Maven, Tomcat, Glass Fish, etc got their names? I noticed these are all animal (-related) names.
user1508893
  • 9,223
  • 14
  • 45
  • 57
-3
votes
2 answers

Is there a function to check if a folder name is the same as current date?

I would need help to write a powershell script that checks if there is a folder with the same name as the current date (ddmmyyyy). The script would run every day and copy all files from that folder into another overwriting everything. I have…
THELUKE
  • 3
  • 3
-3
votes
3 answers

Querying object without a given name

I have created a list of objects using a C# line like this: gameObjects.Add(new Object()); I have also made a function that prints on the screen a list of the object types contained within gameObjects. for(int i = 0; i < gameObjects.Count; i++) …
Andy Latham
  • 377
  • 3
  • 10
-3
votes
1 answer

Finding names in a text file (Text A) using a list in another text file (Text B) and assign values next to the names in Text A (Python)

I am a newbie in Python language and I need your help please. I have 2 different text files. Let's they are Text_A.txt and Text_B.txt. Text_A.txt contains a list of names as following (they are tab delineated): Sequence_1 Sequence_2 …
Eunok Lee
  • 3
  • 1
-3
votes
1 answer

exchange string position using funcion in array of pointers

code: #include int main() { char *names = {"akshay","parag","arun","srinivas","kapil"}; printf("Names: %s %s\n",names[1],names[2]); swap(names[1],names[2]); printf("Names: %s…
-3
votes
2 answers

could use some assistance dealing with a situation related to python

So im new at python and i would like some help in making code where: When an input is typed if the input has a minimum of three words that match any one thing on a list it would replace the input with the text in the list that matches the…
Xei
  • 21
  • 1
  • 7
-3
votes
2 answers

Reading files based on file name and not data type

I am very new to python. I want to read files based on file name and not data type. Say I have Hello.txt_1, Hello.txt_2, Hello.txt_3 in a folder and these files are created automatically by an external code with Hello.txt_3 being the latest file.…
user2269123
  • 15
  • 1
  • 4
-4
votes
1 answer

Column names for a vector using R?

> coefficients [1] -0.052993570 0.071073199 -0.004234659 -0.005725687 How can I rename the columns of my vector "coefficients" in order to get? > coefficients int X1 X2 X3 -0.052993570 0.071073199…
user3347124
  • 153
  • 1
  • 2
  • 7
-4
votes
1 answer

Can I have a php function and javascript function with the same name?

The php function validates user form details in the includes folder. My javascript function validates user details in the javascript external source.
Holly
  • 91
  • 1
  • 5
-4
votes
1 answer

c99: 63 characters of an internal name are significant?

Possible Duplicate: At least the first 31 ,or 63 characters of an internal name are significant? Here's a direct quote from the Book (K&R, 2nd ed, p. 35): "At least the first 31 characters of an internal name are significant. For function…
HATEM EL-AZAB
  • 331
  • 1
  • 3
  • 11
1 2 3
58
59