A number a is a factor of a number b , if a divides b exactly.
0
votes
3answers
117 views
Convert Int into [Int]
I'm looking through a past exam paper and don't understand how to convert Int to [Int].
For example, one of the questions asks us to produce a list of all the factors of a whole number excluding both ...
1
vote
1answer
50 views
How can I ensure that a partition has representative observations from each level of a factor?
I wrote a small function to partition my dataset into training and testing sets. However, I am running into trouble when dealing with factor variables. In the model validation phase of my code, I ...
-1
votes
1answer
114 views
Two factors whose product equals the number and their sum is minimum [closed]
I am having trouble solving an optimization problem efficiently. I tried brute force but it did not work because I am attempting to solve this issue for large numbers.
I am have trouble finding two ...
3
votes
3answers
78 views
Recode categorical factor with N categories into N binary columns
Original data frame:
v1 = sample(letters[1:3], 10, replace=TRUE)
v2 = sample(letters[1:3], 10, replace=TRUE)
df = data.frame(v1,v2)
df
v1 v2
1 b c
2 a a
3 c c
4 b a
5 c c
6 c ...
0
votes
2answers
158 views
How to find prime factors of a number in c++?
I am attempting project euler question number 3, and I don't get the desired result. My logic:
List all the factors of the number 13195 and save them in an array.
Check if each number in the array ...
-1
votes
2answers
500 views
Java program to find prime number factors of a given number and display all its smaller factors in increasing order [closed]
The offical assignment was this "Write a Java program that will read an integer from the keyboard and display all its smaller factors in increasing order. Note that a factor must be prime number. For ...
1
vote
1answer
75 views
Factors of a number
So I am relatively new to Prolog, and while this problem is easy in many other languages I am having a lot of trouble with it. I want to generate a List of factors for a number N. I have already built ...
4
votes
1answer
184 views
What is the fastest algorithm to calculate all factors of an integer number? [duplicate]
I have written this block of code but it is consuming lots of time to calculate...
Can you help me finding out an efficient way to do it?
int tag;
int* factors(int n)
{
int a[1000000];
...
0
votes
2answers
160 views
Haskell Hamming numbers
I'm required to create a function of the form factors below and I believe I've implemented this properly
factors :: Int -> [Int]
factors n = [x | x <- [1..(div n 2) ++ n], mod n x == 0]
...
0
votes
4answers
75 views
More efficient way for this? [closed]
I am wondering if there is a more efficient way to run this program? It runs fine for lower numbers, but as you increase, so does the time - exponentially. So a number like 1000000 takes forever ...
-3
votes
3answers
86 views
Condensing factors using grep while excluding certain results [closed]
In R, I am attempting to condense a factorized column into smaller subsets so I can later reference these subsets in one shot. There are many instances where the naming of these factors needs to be ...
0
votes
0answers
74 views
Rare growth factor plot [closed]
I appreciate this question may be a big ask.
I have been looking at "Searching for Rare Growth Factors Using Multicanonical Monte Carlo Methods" by Driscoll and Maki. Link
And in it they use the ...
5
votes
3answers
250 views
Print all unique combination of factors of a given number
What is the most efficient algorithm to print all unique combinations of factors of a positive integer. For example if the given number is 24 then the output should be
24*1
12*2
8*3
6*4
6*2*2
4*3*2
...
0
votes
0answers
42 views
coverting factors into intergers or numbers [duplicate]
i have a variable that contains numbers as below:
[1] 76.19047619 71.42857143 70.37037037 78.72340426 94.54545455 86.53846154 80.58936579 57.77777778
[9] 96.00000000 89.79591837 81.25000000 ...
1
vote
1answer
62 views
Sorting integers based on their prime factors
I am kind of stuck how to sort integers based on their greatest prime factor in ascending order. For example, we have 3 and 8. The order should be: 8, 3 because 8's prime factor (2) is less than 3's ...
-2
votes
2answers
97 views
Factorial sequence
i am a first year student and we are having our first case study...
right now im working on one of the problems regarding factorial sequence, and i'm getting some errors which i can't figure out.
...
2
votes
2answers
108 views
Converting variables to factors in R [duplicate]
Possible Duplicate:
identifying or coding unique factors using R
I'm having some trouble with R.
I have a data set similar to the following, but much longer.
A B Pulse
1 2 23
2 2 24
2 2 ...
2
votes
3answers
83 views
collapsing two factors into one? [duplicate]
Possible Duplicate:
Joining factor levels of two columns in R
I'm fairly new to R, and I'm trying to make my recoding script somewhat more effective and "correct". I've tried searching the ...
0
votes
2answers
76 views
Optimizing Divisor Sieve [closed]
I have two sieves that I wrote in python and would like help optimizing them if at all possible. The divisorSieve calculates the divisors of all numbers up to n. Each index of the list contains a list ...
-2
votes
3answers
414 views
In Java, how to iterate individual elements of an array with a loop and print each of them?
I am writing a program that will display the factors of a number generated by user input. I am trying to use an array iterated by a loop. The main method will call the method which carries the array ...
4
votes
7answers
263 views
Optimizing my code for finding the factors of a given integer
Here is my code,but i'lld like to optimize it.I don't like the idea of it testing all the numbers before the square root of n,considering the fact that one could be faced with finding the factors of a ...
0
votes
1answer
74 views
Optimal method to factor a number within a limit
I have a piece of code to compute the factors of a number. These factors are then used to program two dimensions of a controller (m * N). The controller generates an interrupt every N bytes so it ...
0
votes
1answer
28 views
how to get the no of factors of a number within range?
Generally I do prime factorization and get all prime factors and I do permutation and combinations to find all factors.
For example: 1824 is the number I am trying to factors of. Now I need a no ...
1
vote
4answers
133 views
Fastest way to calculate all the even squares from 1 to n?
I did this in c :
#include<stdio.h>
int main (void)
{
int n,i;
scanf("%d", &n);
for(i=2;i<=n;i=i+2)
{
if((i*i)%2==0 && (i*i)<= n)
printf("%d \n",(i*i));
}
...
2
votes
3answers
396 views
All factors of big numbers in C/C++
I am trying to find out all factors of numbers which are of the order of 10^18... But there are time constraints which are creating a problem.
What i did was to use Sieve of Eratosthenes to find ...
4
votes
1answer
182 views
R: grouping factors everytime n unique levels occur in data
I want a new grouping every time there's 5 unique levels
Ex. varB is the desired result
structure(list(varA = structure(c(2L, 2L, 3L, 5L, 4L, 1L, 1L,
2L, 3L, 5L, 4L, 4L, 1L), .Label = c("badger", ...
-3
votes
2answers
67 views
level based on bigger factor
Here are the sample data.
df1 <- data.frame(y = 1:5, x = c("s", "m", "l", "s", "m"))
df2 <- data.frame(y = 1:4, x = c("s", "l", "s", "l"))
I'd like df2 has three levels based on df1$x.
I ...
0
votes
0answers
99 views
Updated with data: Error in Diff…must be factors with the same levels
I hope you all can help me.
I have a list with two data frames -- contests and expvar. In the data frame contests, each row is a match with the first column being the winner of the match, and the ...
1
vote
2answers
844 views
Algorithm to find all the exact divisors of a given integer
I want to find all the exact divisors of a number.
Currently I have this:
{
int n;
int i=2;
scanf("%d",&n);
while(i<=n/2)
{
if(n%i==0)
...
0
votes
3answers
167 views
Displaying factors of a number
I want to display every factor of a number typed in a textfield to achieve this I tried using an array. But I am always getting the error 'NSRangeException', reason: '*** -[__NSArrayM objectAtIndex:]: ...
7
votes
2answers
147 views
Setting levels when creating a factor vs. `levels()<-`
Let's create some factors first:
F1 <- factor(c(1,2,20,10,25,3))
F2 <- factor(paste0(F1, " years"))
F3 <- F2
levels(F3) <- paste0(sort(F1), " years")
F4 <- factor(paste0(F1, " years"), ...
3
votes
2answers
2k views
Remove unused factor levels from a ggplot bar plot
I want to do the opposite of this question, and sort of the opposite of this question, though that's about legends, not the plot itself.
The other SO questions seem to be asking about how to keep ...
2
votes
1answer
113 views
Concatenate factors and replace names in R
I'm starting using R but I'm having some problems doing something that would be quite easy with python =P But I'm not ready to give up (yet)
I have a data.frame with several columns. Some are ...
3
votes
2answers
131 views
Counting combinations without destroying type
I wonder whether someone has an idea for how to count combinations like the following in a better way than I've thought of.
> library(lubridate)
> df <- data.frame(x=sample(now()+hours(1:3), ...
0
votes
1answer
109 views
Dropped factor levels with GAM fits [closed]
I'm using a GAM model to predict species abundance based on some environmental conditions at a given point. I have created a generalized additive model ( GAM ) to do this and base my predictions ...
0
votes
3answers
106 views
End condition for a factorising loop
Good evening,
I'm having trouble with an assignement.
Basically we're required to code a program which will calculate the prime factors of a given stdin. The data may only enter the program ...
0
votes
3answers
484 views
R scatter plot with hexadecimal colors
I'm sorry in advance if this question has already been answered on here. I'm new to R and a lot of the explanations are too complex for me. I've got a CSV file with 3 columns, the X values, Y values, ...
7
votes
2answers
1k views
Python Pandas: how to turn a DataFrame with “factors” into a design matrix for linear regression?
If memory servies me, in R there is a data type called factor which when used within a DataFrame can be automatically unpacked into the necessary columns of a regression design matrix. For example, a ...
2
votes
1answer
313 views
Optimization of Algorithm [closed]
Here is the link to the problem.
The problem asks the number of solutions to the Diophantine equation of the form 1/x + 1/y = 1/z (where z = n!). Rearranging the given equation clearly tells that the ...
2
votes
1answer
202 views
Re-use a colsplit regex cutting column with meld and reshape package
I have problem to convert a classic input data with reshape
My input data :
df <- read.table(textConnection(" Ville POP1999 POP2010 PARC1999 PARC2010
1 Paris 1800000 2200000 150 253
2 ...
2
votes
1answer
333 views
R: how do I output the factor level from a for loop rather than the index?
I have a data frame that I am running a Monte Carlo simulation on, using for loops, to generate a simulated distribution. As I am testing the simulation code, I am just accessing the first observation ...
2
votes
4answers
155 views
How would I go about using multiple arraylists to filter factors of a number?
Okay, so say i want to find factors of a number a. I know how to do that, using a for loop and an arraylist. My problem is that (and i have no idea how to go about this) I want the factors in ...
0
votes
3answers
1k views
Finding factors of a given integer
So I have something like this down...
int f = 120;
for(int ff=1;ff<=f;ff++){
while (f%ff != 0){
}
Is there anything wrong with my loop to find factors? I'm really confused as ...
5
votes
3answers
306 views
R machine learning packages to deal with factors with a large number of levels
I'm trying to do some machine learning stuff that involves a lot of factor-type variables (words, descriptions, times, basically non-numeric stuff). I usually rely on randomForest but it doesn't work ...
2
votes
2answers
509 views
Prime factors generation C++
I realize that this is a pretty common question, but I want to know what I've been doing wrong and how can I fix it. Project Eular's Prime Factorization Question has been bugging me.
Here is what I ...
2
votes
4answers
233 views
F# Create list of multiples of x?
I want to create a list that is the multiples of a number. For example [2; 4; 6; 8; 10] would be the multiples of 2 between 0 and 10.
How would I dynamically create such a list of the multiples of ...
2
votes
2answers
150 views
Need to know if this a Unique way to divide?
Few months ago I had asked a question on an "Algorithm to find factors for primes in linear time" in StackOverflow.
In the replies i was clear that my assumptions where wrong and the Algorithm cannot ...
2
votes
1answer
1k views
factor with 6 levels out of a continuous variable
I have a continuous variable of frequency that ranges from 0 to 6.115053.
I need to split that in 6 levels, my analysis will be more readable this way.
I have tried:
frequency.new <- ...
20
votes
2answers
404 views
Why is the terminology of labels and levels in factors so weird?
An example of a non-settable function would be labels. You can only set factor labels when they are created with the factor function. There is no labels<- function. Not that 'labels' and 'levels' ...
0
votes
2answers
86 views
How to renumber a series into parallel sets
I'm working in R. I have a dataframe, df that looks like this:
> str(exp)
'data.frame': 691200 obs. of 19 variables:
$ groupname: Factor w/ 8 levels "rowA","rowB",..: 1 1 1 1 1 1 1 1 1 1 ...
...


