I am trying to use sqldf with a dataframe created in R. My table has 2 columns of logical vectors. My code looks like sqldf("Select* from df where Dupe1='TRUE' or Dupe2='TRUE' '' ). It returns the Error: unexpected numeric constant. Do not understand what this means. I assume that sql can't read R's logical vectors. Any solution would be greatly appreciated.
sqldf can't read logical vectors in R
508 views Asked by ddd At
1
There are 1 answers
Related Questions in SQL
- SQL schema for a fill-in-the-blank exercise
- Hibernate: JOIN inheritance question - why the need for two left joins
- What's supposed to be the problem in this query?
- Compare fields in two tables
- How to change woocomerce or full wordpress currency with value from USD to AUD
- Dynamic query creation with Array like implementation
- SQL query to get student enrolled in this month in a course - Moodle
- SQL LAG() function returning 0 for every row despite available previous rows
- Convert C# DateTime.Ticks to Bigquery DateTime Format
- Use row values from another table to select them as columns and establish relations between them (pivot table)
- SQL: Generate combination table based on source and destination column from same table
- how to use system's environnement variables in sql script
- PHP fetchAll on JOIN
- Multitable joining in Sql
- How to display name starting from 'z' by using BETWEEN cmd only?
Related Questions in R
- How to make an R Shiny app with big data?
- How do I keep only specific rows based on whether a column has a specific value?
- Likert scale study - ordinal regression model
- Extract a table/matrix from R into Excel with same colors and stle
- How can I solve non-conformable arguments in R netmeta::discomb (Error in B.matrix %*% C.matrix)?
- Can raw means and estimated marginal means be the same ? And when?
- Understanding accumulate function when .dir is set to "backwards"
- Error in if (nrow(peaks) > 0) { : argument is of length zero Calls: CopywriteR ... tryCatch -> tryCatchList -> tryCatchOne -> <Anonymous> Execution ha
- How to increase quality of mathjax output?
- Convert the time intervals to equal hours and fill in the value column
- How to run an R function getpoints() from IPDfromKM package in an R shiny app which in R pops up a plot that utilizes clicks to capture coordinates?
- Replace NA in list of dfs in certain columns and under certain conditions
- R and text on Cyrillic
- The ts() function in R is returning the correct start and frequency but not end value which is 1 and not 179
- TROUBLING with the "DROP_NA" Function
Related Questions in LOGICAL-OPERATORS
- sample query for review for improvement on big query
- R method for comparing NAs between two vectors
- How exactly do or/and operators in Python behave?
- Consolidating multiple OR and AND conditions in R
- Why is $scope >= 0 showing true in interpolation while empty in controller?
- Logical operator on array of bool
- why does the operator logic in Linq not match the results when the value is 0 or nothing in VB.NET
- Why does painted_img always remain zero in my Python code?
- PubMed query: priority of operations using parenthesis leads to zero results
- getting the error "Conversion to logical from string is not possible" while using UI table in MATLAB
- Combining & and | statements in case_when function
- Difference between logical "and" and bit wise &
- How can I ignore a case of a logical list throwing an error in R programming?
- How the logical operators works in java?
- What is the difference between logical operators and their corresponding chained if-conditionals?
Related Questions in SQLDF
- doing outer for really large data frame hitting memory usage in R
- Using PowerBI to connect to a Python Script and running SQL within the Python Script using PANDASQL and SQLDF
- Creating tables directly within SQLDF
- Joining sql table and R dataframe in query
- Error in match.fun(asfn) : 'c("as.hms", "as.difftime")' is not a function, character or symbol
- Getting InterfaceError on PandaSQL Query in Jupyter Notebook
- UPDATE function in sqldf in Python
- What is the CORRECT string function for LEFT in sqldf python?
- Is there a way in Python to extract a single value from a pandas dataframe as a primative value?
- extract value between specific string and colon in R
- Avoid duplicates columns with left join sqldf
- Read CSV file meeting multiple conditions in R
- How to claculate cumulative credit balance in R
- Error:can only bind lists of raw vectors (or null)
- Why did sqldf in R give this syntax error?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
It may just how things were copied, but in your question, your sql statement ends with two single quotes, not a double quote. But the big problem here is that TRUE and FALSE are not stored as strings. TRUE is stored as 1. FALSE is stored as 0. So the code below does what you want. I added a row number so that we can see which rows were selected.